1/* PR target/27266.
2   The testcase below used to trigger an ICE.  */
3
4/* { dg-do compile } */
5/* { dg-require-effective-target ilp32 } */
6/* { dg-options "-march=pentium" } */
7
8signed long long sll;
9
10void
11foo (void)
12{
13  __sync_fetch_and_add (&sll, 1);
14}
15