PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ipa-split-3.c
blob05a37f8102782afcbcbc66b67f052a26b2e8e984
1 int baz (void);
2 static int
3 foo (int x)
5 if (__builtin_expect (x <= 0, 0))
7 __builtin_printf ("foo\n");
8 __builtin_printf ("foo\n");
9 __builtin_printf ("foo\n");
10 __builtin_abort ();
12 return 6;
15 int a,b,c;
17 int
18 bar (int x)
20 return foo (a) + foo (b) + foo (c);