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
testsuite: Revert to the original version of pr100056.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
bb-slp-pr97746.c
blob
c5a615d1253f9f1ad8d42dd005a1d7b3aa271cb0
1
/* { dg-do compile } */
2
3
int
a
,
b
;
4
short
c
;
5
6
extern
void
f
(
short
*);
7
8
void
d
()
9
{
10
short
e
[
2
] = {
0
,
0
};
11
while
(
a
)
12
{
13
f
(
e
);
14
int
g
=
0
||
a
,
h
=
8
&&
c
;
15
short
i
=
c
;
16
c
=
h
&
g
;
17
if
(
b
)
18
b
=
g
||
i
;
19
}
20
}