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
PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr81799.c
blob
543ae94fbf61cb26b17f93021830731060569e34
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
printf
(
const char
*, ...);
5
6
int
a
,
c
[
1
],
d
,
e
, **
f
;
7
8
void
fn1
(
int
h
)
9
{
10
int
*
i
=
0
;
11
for
(
d
=
0
;
d
<
1
;
d
++)
12
{
13
if
(
d
)
14
continue
;
15
for
(;
e
;
e
++)
16
{
17
a
=
c
[*
i
];
18
if
(
h
)
19
printf
(
"0"
);
20
}
21
return
;
22
}
23
f
= &
i
;
24
}
25