aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20040908-1.c
blob: 65d21852ce3f6d3dba4fc03feb6ae9696ca8d48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR 17186 */

void bar(void);

double foo()
{
    int i;
    double d;

    if (i)
        bar();
    else
        if (d) return 0;
}