public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/11392] New: Generalisation of 8730 bug
@ 2003-07-01 16:38 ilgis at num dot uni-sb dot de
  2003-07-03 13:19 ` [Bug c/11392] " pinskia at physics dot uc dot edu
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: ilgis at num dot uni-sb dot de @ 2003-07-01 16:38 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11392

           Summary: Generalisation of 8730 bug
           Product: gcc
           Version: 3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: ilgis at num dot uni-sb dot de
                CC: gcc-bugs at gcc dot gnu dot org

Dear All,

the following bug occoured

c.c: In function `two':
c.c:6: internal compiler error: in expand_expr, at expr.c:6866

when I compile the following example:

///////////////////////////////////////////
 void three(double *A);

 void one(int N1, int N2, int M, void *data)
 {
 void two(double D[N1][N2][N2])
 { three(D[M][0]);
   return;
 }
   two(data);
   return;
 }
//////////////////////////////////////////

If I remove 3-D arrays like:

//////////////////////////////////////////
 void three(double *A);

 void one(int N1, int N2, int M, void *data)
 {
 void two(double D[N1][N2])
 { three(D[M]);
   return;
 }
   two(data);
   return;
 }
/////////////////////////////////////////////

then it is Ok.

I tested it on gcc-3.3 release.

PS: when this bug will be fixed, please check 4 and more dimensional arrays to 
avoid a new bug report from me :)

Sincerely

Ilghiz


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2005-09-05  7:21 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-01 16:38 [Bug c/11392] New: Generalisation of 8730 bug ilgis at num dot uni-sb dot de
2003-07-03 13:19 ` [Bug c/11392] " pinskia at physics dot uc dot edu
2003-07-07 13:58 ` [Bug c/11392] [3.3/3.4 Regression]Generalisation " pinskia at physics dot uc dot edu
2003-07-12  0:01 ` steven at gcc dot gnu dot org
2003-07-15 13:35 ` [Bug c/11392] [3.3/3.4 Regression]More trouble with nested functions pinskia at physics dot uc dot edu
2003-07-18  3:25 ` mmitchel at gcc dot gnu dot org
2003-10-16  9:42 ` mmitchel at gcc dot gnu dot org
2003-12-12  9:40 ` ebotcazou at gcc dot gnu dot org
2003-12-22  5:48 ` pinskia at gcc dot gnu dot org
2004-01-11  0:39 ` pinskia at gcc dot gnu dot org
2004-01-12 23:39 ` steven at gcc dot gnu dot org
2004-01-13 16:44 ` steven at gcc dot gnu dot org
2004-01-24 15:28 ` [Bug c/11392] [3.3/3.4/3.5 " pinskia at gcc dot gnu dot org
2004-03-01  1:26 ` mmitchel at gcc dot gnu dot org
2004-03-08 15:48 ` pinskia at gcc dot gnu dot org
2004-05-13 23:22 ` pinskia at gcc dot gnu dot org
2005-09-05  7:21 ` [Bug c/11392] [3.3/3.4/4.0 " reichelt at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).