This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/11392] [3.3/3.4 Regression]More trouble with nested functions


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-22 05:31 -------
What is really funny is that this works:
 void three(double *A);

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

-- 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]