summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/uninit-24.c
blob: 30fe1e510fdb991c1d96105555b18dc4dd95510f (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O -Wmaybe-uninitialized" } */

int foo (int x)
{
  int y;
  if (x)
    return *(&y + 1); /* { dg-bogus "may be used uninitialized" } */
  return 0;
}