annotate gcc/testsuite/gcc.c-torture/compile/20030707-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* PR c/11449. */
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 /* sign_bit_p() in fold-const.c failed to notice that (int) 0x80000000
kono
parents:
diff changeset
4 was the sign bit of m. As a result, fold_single_bit_test()
kono
parents:
diff changeset
5 returned ((unsigned int) m >> 31), and that was eventually passed
kono
parents:
diff changeset
6 to invert_truthvalue(), which did not know how to handle
kono
parents:
diff changeset
7 RROTATE_EXPR, causing an ICE. */
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 int
kono
parents:
diff changeset
10 foo (int m)
kono
parents:
diff changeset
11 {
kono
parents:
diff changeset
12 return !(m & ((int) 0x80000000));
kono
parents:
diff changeset
13 }