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
/
pr99253.c
blob
3e8d865dc428c0be69aeedb4c2cd577ea0bc36a8
1
#include
"tree-vect.h"
2
3
int
a
=
0
;
4
static int
b
=
0
;
5
long
c
=
0
;
6
7
int
8
main
()
9
{
10
check_vect
();
11
for
(
int
d
=
0
;
d
<
8
;
d
++)
12
{
13
a
^=
c
;
14
b
=
a
;
15
a
^=
1
;
16
}
17
if
(
a
!=
0
||
b
!=
1
)
18
__builtin_abort
();
19
return
0
;
20
}