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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67121.c
blob
2b609ee83160221dbd0b86a5a343dd1cf3a9bcae
1
/* { dg-do run } */
2
3
int
a
[
6
],
b
,
c
=
226
,
d
,
e
,
f
;
4
signed char
g
;
5
6
void
7
fn1
(
int
p1
)
8
{
9
b
=
a
[
p1
];
10
}
11
12
int
13
main
()
14
{
15
a
[
0
] =
1
;
16
for
(
f
=
0
;
f
<
9
;
f
++)
17
{
18
signed char
h
=
c
;
19
int
i
=
1
;
20
g
=
h
<
0
?
h
:
h
>>
i
;
21
e
=
g
;
22
for
(
d
=
1
;
d
;
d
=
0
)
23
;
24
}
25
fn1
(
g
>>
8
&
1
);
26
27
if
(
b
!=
0
)
28
__builtin_abort
();
29
30
return
0
;
31
}