* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr42708-1.c
blob9124a85b9057379e4b3ae81474a465b8f017e5d9
1 typedef __SIZE_TYPE__ size_t;
2 void *malloc(size_t);
3 typedef union YYSTYPE {
4 char *id;
5 } YYSTYPE;
6 extern YYSTYPE yylval;
7 void yylex (int b)
9 yylval = (YYSTYPE) (b ? 0 : (char *) malloc (4));