aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wunreachable-7.c
blob: a19c94a176092972aa01fce79b98b278d9108bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR c/11370  */
/* { dg-do compile } */
/* { dg-options "-O2 -Wunreachable-code" } */

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;
}