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
PR tree-optimization/33562
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
tailcall-5.c
blob
00113d7e796ddee376b1f0039982c45da870e6a7
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-tailc" } */
3
4
void
5
set_integer
(
void
*
dest
,
int
value
,
int
length
)
6
{
7
int
tmp
=
value
;
8
__builtin_memcpy
(
dest
, (
void
*) &
tmp
,
length
);
9
}
10
11
/* { dg-final { scan-tree-dump-not "tail call" "tailc" } } */