aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20040908-1.c
blob: f52bf5ee0d48d38fdb6c4850829464cb5009206f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR 17186 */

double foo()
{
    int i;
    double d;

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