------- Comment #7 from iains at gcc dot gnu dot org  2010-04-12 00:55 -------
 this causes the message at any optimization > 0.
which kinda points to variable length arrays as the issue (wherever that issue
is).

extern long random(void);
int main(int ac,char *av[])
{
  int n = random();
  int x[n+1];
  return 0;   
}


-- 


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

Reply via email to