repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[committed] ft32 doesn't support trampolines.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
mips
/
fix-r10000-4.c
blob
344c6277b5bd28db5cd87847fc4701015d0656c7
1
/* { dg-do compile } */
2
/* { dg-options "-mfix-r10000" } */
3
/* { dg-final { scan-assembler-times "\tbeql\t" 3 } } */
4
5
NOMIPS16
int
6
f1
(
int
*
z
)
7
{
8
return
__sync_fetch_and_and
(
z
,
42
);
9
}
10
11
NOMIPS16
short
12
f2
(
short
*
z
)
13
{
14
return
__sync_fetch_and_and
(
z
,
42
);
15
}
16
17
NOMIPS16
char
18
f3
(
char
*
z
)
19
{
20
return
__sync_fetch_and_and
(
z
,
42
);
21
}