aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/pr84014.c
blob: 62ff71014a4ed0b9aa8321ab04fa83cb4448a174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile { target { powerpc*-*-* && ilp32 } } } */
/* { dg-options "-O1 -fno-split-wide-types -mdejagnu-cpu=e300c3" } */

int
nh (void)
{
}

long long int
si (void)
{
}

int
xf (int fg)
{
  int y5 = nh ();
  fg += !!y5 ? y5 : si ();
  return fg;
}