aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wunreachable-6.c
blob: 6aac7aab205d201ae99c9da3d65545c366bea85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR c/11370  */
/* { dg-do compile } */
/* { dg-options "-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;
}