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-ifcombine-ccmp-5.c
blob
0c048335237e8dcf07bf26c510fc6118611d0645
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -g -fdump-tree-optimized --param logical-op-non-short-circuit=1" } */
3
4
int
t
(
int
a
,
int
b
,
int
c
)
5
{
6
if
(
a
>
0
&&
b
>
0
&&
c
>
0
)
7
return
0
;
8
return
1
;
9
}
10
/* { dg-final { scan-tree-dump-times "\&" 2 "optimized" } } */