PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / pr37908.c
blobe1457faf718878d0a3e0efbc433128fee389fd56
1 /* { dg-do run } */
2 /* { dg-require-effective-target sync_char_short } */
3 /* { dg-options "-Wsync-nand" } */
4 /* { dg-options "-Wsync-nand -march=i486" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
5 /* { dg-options "-Wsync-nand -mcpu=v9" { target sparc*-*-* } } */
8 extern void abort (void);
10 int main (void)
13 short xLoc;
14 short xIn, xOut, xExpect, i = 1;
16 xLoc = xIn = ~ (1 << i);
17 xExpect = ~ (xIn & 0x7F);
19 xOut = __sync_nand_and_fetch (&xLoc, 0x7F); /* { dg-message "note: '__sync_nand_and_fetch' changed semantics in GCC 4.4" } */
21 if (xOut != xExpect)
22 abort ();
24 return 0;