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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr64087.c
blob
fe3c634762dc6a15222606a2471f95bd1a99b16c
1
/* PR rtl-optimization/64087 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3" } */
4
5
int
printf
(
const char
*, ...);
6
7
int
a
[
72
],
b
,
c
,
d
,
e
;
8
9
int
10
main
()
11
{
12
int
h
;
13
for
(
b
=
0
;
b
<
72
;
b
++)
14
{
15
h
=
1
;
16
if
(
b
)
17
h
>>=
1
;
18
a
[
b
] =
h
;
19
}
20
for
(;
e
;
e
++)
21
for
(
c
=
0
;
c
<
1
;)
22
for
(;
d
;)
23
{
24
printf
(
"0"
);
25
int
g
;
26
for
(
b
=
0
;
b
<
72
;
b
++)
27
{
28
g
=
1
;
29
if
(
b
)
30
g
>>=
1
;
31
a
[
b
] =
g
;
32
}
33
}
34
return
0
;
35
}