Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr80501.c
blob0a33e1fbd3427e5582f3a8e1aaaa72353dd088af
1 /* PR rtl-optimization/80501 */
3 signed char v = 0;
5 static signed char
6 foo (int x, int y)
8 return x << y;
11 __attribute__((noinline, noclone)) int
12 bar (void)
14 return foo (v >= 0, __CHAR_BIT__ - 1) >= 1;
17 int
18 main ()
20 if (sizeof (int) > sizeof (char) && bar () != 0)
21 __builtin_abort ();
22 return 0;