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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr106923.c
blob
1c89f418810c6aec2ff1c53b61b749762742e0d4
1
/* PR tree-optimization/106923 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -finline-small-functions -fpartial-inlining --param max-inline-insns-single=1 --param uninlined-function-insns=10000" } */
4
5
int
n
;
6
7
int
8
baz
(
void
);
9
10
__attribute__
((
returns_twice
))
int
11
bar
(
void
)
12
{
13
if
(
baz
())
14
++
n
;
15
16
return
0
;
17
}
18
19
int
20
foo
(
void
)
21
{
22
return
bar
();
23
}