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
c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr64326.c
blob
ed6481048aa88f3d76d488248710c5813dfa121e
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
,
d
,
e
,
f
[
5
][
2
];
4
char
g
;
5
6
int
7
fn1
()
8
{
9
return
d
&&
c
?
0
:
1
;
10
}
11
12
int
13
fn2
()
14
{
15
int
h
;
16
for
(;;)
17
for
(;
e
;)
18
{
19
int
i
,
j
;
20
h
=
a
?
1
:
b
;
21
if
(
h
||
fn1
() ^
g
-
682
)
22
{
23
for
(
i
=
0
;
i
<
5
;
i
++)
24
for
(
j
=
0
;
j
<
2
;
j
++)
25
f
[
i
][
j
] =
0
;
26
return
0
;
27
}
28
}
29
}