repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
frv
/
fr550-builtins-3.c
blob
b5347de7452817a36877f3fe16108ed150a7bde9
1
/* Test prefetch support. */
2
/* { dg-do compile } */
3
4
#if __FRV_VLIW__ > 1
5
void
foo
(
void
*
x
)
6
{
7
__data_prefetch
(
x
);
8
}
9
#else
10
asm
(
";
\t
nop.p
\n
;
\t
nldub "
);
11
#endif
12
13
/* { dg-final { scan-assembler "\tnop.p.*\tnldub " } } */