PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr69644.c
blobc60b19170291502f392f8473124a13a8621f632a
1 /* PR target/69644 */
2 /* { dg-do compile } */
4 int
5 main ()
7 unsigned short x = 0x8000;
8 if (!__sync_bool_compare_and_swap (&x, 0x8000, 0) || x)
9 __builtin_abort ();
10 return 0;