aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr57441.c
blob: 00ec02475259e5f8e146ad66a5304fee92211b5a (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
27
/* PR tree-optimization/57441 */

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

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

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

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