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
/
graphite
/
pr84552.c
blob
15cbb0848f4bb08e87bfcce0f87ff04674a18a4b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -floop-nest-optimize -fno-tree-copy-prop -fno-tree-fre -fno-tree-loop-ivcanon" } */
3
4
int
cx
;
5
6
int
7
e6
(
int
pj
,
int
xe
)
8
{
9
for
(
cx
=
0
;
cx
<
2
; ++
cx
)
10
while
(
xe
<
1
)
11
{
12
for
(
cx
=
0
;
cx
<
2
; ++
cx
)
13
pj
*=
2
;
14
15
if
(
cx
!=
0
)
16
goto
o3
;
17
18
++
xe
;
19
}
20
21
o3
:
22
return
pj
;
23
}