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
[Ada] Add special bypass for obsolete code pattern
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
nds32
/
builtin-isync.c
blob
3160e4ad38572a4bbef7478b35ba70d54b719c5e
1
/* Verify that we generate isync instruction with builtin function. */
2
3
/* { dg-do compile } */
4
/* { dg-options "-O0" } */
5
/* { dg-final { scan-assembler "\\tisync" } } */
6
7
void
8
test
(
void
)
9
{
10
int
*
addr
= (
int
*)
0x53000000
;
11
__builtin_nds32_isync
(
addr
);
12
}