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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr110334.c
blob
bc085d4b1699bd98230649a1179a8379d0efdd1c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-release_ssa" } */
3
int
a
;
4
int
ret1
()
5
{
6
return
a
;
7
}
8
int
inline
9
__attribute__
((
always_inline
))
aret1
()
10
{
11
return
ret1
();
12
}
13
int
test
()
14
{
15
return
aret1
();
16
}
17
/* { dg-final { scan-tree-dump-not "= ret1" "release_ssa" } } */