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
/
ssa-pre-9.c
blob
ce873c246e13f5d19fcd12302a37cc57cf593881
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-fre1-stats" } */
3
int
4
foo
(
unsigned long
a
)
5
{
6
int
b
=
__builtin_clzl
(
a
);
7
int
c
=
__builtin_clzl
(
a
);
8
if
(
b
==
c
)
9
return
1
;
10
return
0
;
11
}
12
/* { dg-final { scan-tree-dump-times "return 0;" 0 "fre1"} } */