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
/
pr69068.c
blob
0abea060025c7efbd65b586dafdab01811af022f
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fgraphite-identity" } */
3
4
int
qo
;
5
int
zh
[
2
];
6
7
void
8
td
(
void
)
9
{
10
int
ly
,
en
;
11
for
(
ly
=
0
;
ly
<
2
; ++
ly
)
12
for
(
en
=
0
;
en
<
2
; ++
en
)
13
zh
[
en
] = ((
qo
==
0
) || (((
qo
*
2
) !=
0
))) ?
1
: -
1
;
14
}