Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr61725.c
blob0aa6dafa218796e9f1f05bca38e079f8124bc8ff
1 /* PR tree-optimization/61725 */
3 int
4 main ()
6 int x;
7 for (x = -128; x <= 128; x++)
9 int a = __builtin_ffs (x);
10 if (x == 0 && a != 0)
11 __builtin_abort ();
13 return 0;