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
/
pr95570.c
blob
b93626140048b1a88718fe1d3ee4693a1226249b
1
/* { dg-do compile } */
2
/* { dg-additional-options "-march=armv8.2-a+sve -msve-vector-bits=256 -mstrict-align -fwrapv" { target aarch64*-*-* } } */
3
4
int
x
[
8
][
32
];
5
6
void
7
foo
(
int
start
)
8
{
9
for
(
int
i
=
start
;
i
<
start
+
16
;
i
++)
10
x
[
start
][
i
] =
i
;
11
}