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
/
sh
/
memset.c
blob
e888d1d8c4ec7bcbf395edfd1d742243668f7763
1
/* Check that the __builtin_memset function is inlined when
2
optimizing for speed. */
3
/* { dg-do compile } */
4
/* { dg-options "-O2" } */
5
/* { dg-final { scan-assembler-not "jmp" } } */
6
7
void
8
test00
(
char
*
dstb
)
9
{
10
__builtin_memset
(
dstb
,
0
,
15
);
11
}
12