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
Revert DECL_USER_ALIGN part of r241959
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr65321.c
blob
294487cab1d75d1eb3474280f2c983685d71dc80
1
/* PR rtl-optimization/65321 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -g" } */
4
5
int
a
,
b
,
c
,
d
,
e
;
6
7
int
8
foo
(
void
)
9
{
10
int
h
;
11
char
i
;
12
for
(;
c
>
0
;)
13
{
14
for
(
d
=
0
;
d
<
2
;
d
++)
15
{
16
i
=
1
<<
d
;
17
if
(
i
-
a
)
18
{
19
e
=
b
=
0
;
20
for
(;
c
;
c
--)
21
d
=
127
;
22
}
23
}
24
h
= ~
d
;
25
if
(
h
>
c
)
26
for
(;;)
27
;
28
return
0
;
29
}
30
return
0
;
31
}