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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
simd-clones-6.c
blob
8818594bfac22320fe707e9fc752143631f6ea1e
1
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2
/* { dg-options "-fopenmp" } */
3
4
/* Test that array subscripts are properly adjusted. */
5
6
int
array
[
1000
];
7
#pragma omp declare simd notinbranch simdlen(4)
8
void
foo
(
int
i
)
9
{
10
array
[
i
] =
555
;
11
}