blob: 15a0704f2c98341853cc171ee9394e63589a69bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { dg-do compile } */
/* { dg-mips-options "-O2 -march=mips4 -mfix-r10000" } */
/* { dg-final { scan-assembler-times "\tbeql\t" 3 } } */
NOMIPS16 int
f1 (int *z)
{
return __sync_fetch_and_xor (z, 42);
}
NOMIPS16 short
f2 (short *z)
{
return __sync_fetch_and_xor (z, 42);
}
NOMIPS16 char
f3 (char *z)
{
return __sync_fetch_and_xor (z, 42);
}
|