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
[testsuite] Fix directives order
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
ia64
/
sibcall-opt-1.c
blob
6e8d1a2faed118696b3af723ed81d77a72cc71b0
1
/* PR target/38056. Do not do sibcall optimization across object file
2
boundery when -mconstant-gp is not used. */
3
/* { dg-do compile } */
4
/* { dg-options "-O2" } */
5
/* { dg-final { scan-assembler "br.call.*bar" } } */
6
7
int
bar
(
int
x
);
8
9
int
foo
(
int
x
)
10
{
11
return
(
bar
(
x
+
1
));
12
}