bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
22 lines
352 B
C
22 lines
352 B
C
/* PR c/11370 */
|
|
/* { dg-do compile } */
|
|
/* { dg-options "-O2 -Wunreachable-code" } */
|
|
|
|
extern int printf (const char *, ...);
|
|
extern void exit (int);
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (argc != 1)
|
|
exit(1);
|
|
|
|
{
|
|
int ix; /* { dg-bogus "will never be executed" } */
|
|
ix = printf("hello\n");
|
|
printf("%d\n", ix);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|