aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/uninit-15-O0.c
blob: a3fd2b63ba71f416cfda3d877f1bc26c6c68a09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-Wuninitialized" } */

/* XFAIL for now, the uninitialized pass runs before inlining only at -O0.  */

inline int __attribute__((always_inline))
foo (int i)
{
    if (i) return 1; /* { dg-warning "is used uninitialized" {} { xfail *-*-* } } */
    return 0;
}

void baz();

void bar()
{
    int j;           /* { dg-message "was declared here" {} { xfail *-*-* } } */
    for (; foo(j); ++j)
        baz();
}