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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ipa-split-3.c
blob
05a37f8102782afcbcbc66b67f052a26b2e8e984
1
int
baz
(
void
);
2
static int
3
foo
(
int
x
)
4
{
5
if
(
__builtin_expect
(
x
<=
0
,
0
))
6
{
7
__builtin_printf
(
"foo
\n
"
);
8
__builtin_printf
(
"foo
\n
"
);
9
__builtin_printf
(
"foo
\n
"
);
10
__builtin_abort
();
11
}
12
return
6
;
13
}
14
15
int
a
,
b
,
c
;
16
17
int
18
bar
(
int
x
)
19
{
20
return
foo
(
a
) +
foo
(
b
) +
foo
(
c
);
21
}