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
/
20040615-1.c
blob
de7fa11fe474b968b6dda22726859778e2158672
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fdump-tree-dom2" } */
3
4
void
bar1
(
void
);
5
void
bar2
(
void
);
6
7
void
8
foo
(
unsigned int
a
,
unsigned int
b
)
9
{
10
if
(
a
>=
b
)
11
bar1
();
12
else if
(
b
<=
a
)
13
bar2
();
14
}
15
16
/* { dg-final { scan-tree-dump-times "bar2" 0 "dom2" } } */