OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / fix-r10000-11.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mfix-r10000" } */
3 /* { dg-final { scan-assembler-times "\tbeql\t" 3 } } */
4
5 NOMIPS16 int
6 f1 (int *z)
7 {
8   return __sync_xor_and_fetch (z, 42);
9 }
10
11 NOMIPS16 short
12 f2 (short *z)
13 {
14   return __sync_xor_and_fetch (z, 42);
15 }
16
17 NOMIPS16 char
18 f3 (char *z)
19 {
20   return __sync_xor_and_fetch (z, 42);
21 }