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
/
pr36287.c
blob
51b77c7157d6cd07dab0d3862424772685134b2d
1
/* { dg-do compile } */
2
/* { dg-options "-O -ftree-loop-linear" } */
3
4
int
tab
[
2
][
2
];
5
6
int
foo
()
7
{
8
int
i
,
j
,
k
;
9
10
for
(
i
=
0
;
i
<
2
; ++
i
)
11
for
(
j
=
0
;
j
<
2
; ++
j
)
12
for
(
k
=
0
;
k
<
2
; ++
k
)
13
{}
14
15
for
(
i
=
0
;
i
<
2
; ++
i
)
16
for
(
j
=
0
;
j
<
2
; ++
j
)
17
if
(
i
==
0
)
18
tab
[
i
][
j
] =
0
;
19
20
return
tab
[
0
][
1
];
21
}
22