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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr64493.c
blob
d3faf84bcc16d31fc11dd2d0cd7242972fdbafdc
1
#include
"tree-vect.h"
2
3
int
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
;
4
5
int
6
main
()
7
{
8
check_vect
();
9
10
for
(;
a
;
a
--)
11
for
(
d
=
1
;
d
<=
0
;
d
++)
12
#pragma GCC novector
13
for
(;
d
;)
14
if
(
h
)
15
{
16
if
(!
g
)
__builtin_abort
();
17
if
(!
0
)
__builtin_abort
();
18
}
19
20
for
(
f
=
4
;
f
;
f
--)
21
{
22
for
(
b
=
0
;
b
<
2
;
b
++)
23
c
|=
1
;
24
e
|=
c
;
25
}
26
27
return
0
;
28
}
29