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
/
predcom-6.c
blob
96d9bf93ef7b5c2e5007edce3367a262cd434c83
1
/* { dg-do run } */
2
3
int
a
,
c
,
e
[
5
][
2
];
4
unsigned int
d
;
5
6
int
7
main
()
8
{
9
for
(
d
=
0
;
d
<
2
;
d
++)
10
if
(
a
?
0
:
e
[
c
+
3
][
d
] &
e
[
c
+
4
][
d
])
11
break
;
12
return
0
;
13
}