Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr77677.c
blobaf3f0b0af09f858c87f15fbaa7649f3030c5da11
1 /* PR ipa/77677 */
2 /* { dg-do compile } */
4 int a, b;
6 static void fn1 (short p1)
8 a = -p1;
9 if (a || b)
10 __builtin_printf ("%d\n", b);
13 int main ()
15 int c[] = { 40000 };
16 fn1 (c[0]);
17 return 0;