aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr57441.c
blob: e357c100518bfb6d274f6ea78e98f1846a03342d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* PR tree-optimization/57441 */

int a, c, d, *e;
unsigned char b;

char
baz (char p1)
{
    return p1 * a;
}

void func_65 ();
func_1 ()
{
    func_65 ();
    func_65 ();
}

void
func_65 ()
{
    d = baz (b--);
    if (*e)
        b--;
    c = 0;
}