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
/
pr21829.c
blob
8f5ae5127e33729a9aa42f46a2154ec0a818e7c0
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
4
int
test
(
int
v
)
5
{
6
int
x
=
0
;
7
int
u
;
8
for
(
u
=
0
;
u
<
2
;
u
++)
9
{
10
if
(
u
>
v
)
11
{
12
if
(
u
%
2
==
1
)
13
x
++;
14
}
15
}
16
return
x
;
17
}
18
19
/* This should be unrolled and optimized into conditional set of return value "v < 0". */
20
21
/* { dg-final { scan-tree-dump-not "if \\(" "optimized" } } */