aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/uninit-15-O0.c
blob: 1ddddee1388b61148cd1f609a63c9a9f2e0b727a (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 "declared here" } */
    for (; foo(j); ++j) /* { dg-warning "is used uninitialized" } */
        baz();
}