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
Update gcc-auto-profile / gen_autofdo_event.py
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
headmerge-1.c
blob
8e913ea440dd5dd8020be11afd2372614643045d
1
/* { dg-do compile } */
2
/* { dg-require-effective-target nonpic } */
3
/* { dg-options "-O2" } */
4
/* { dg-final { scan-assembler-times "\\\$120|, 120" 1 } } */
5
6
extern
void
foo1
(
int
);
7
extern
void
foo2
(
int
);
8
9
void
t
(
int
x
,
int
y
)
10
{
11
if
(
y
<
5
)
12
foo1
(
120
);
13
else
14
foo2
(
120
);
15
}