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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ivdep.c
blob
23d51de9fe3d13d0c45e556b0347793bf8a02265
1
/* { dg-do compile } */
2
3
/* PR other/33426 */
4
5
void
foo
(
int
n
,
int
*
a
,
int
*
b
,
int
*
c
,
int
*
d
,
int
*
e
) {
6
int
i
,
j
;
7
#pragma GCC ivdep
8
for
(
i
=
0
; ; ++
i
) {
/* { dg-error "missing loop condition in loop with 'GCC ivdep' pragma before ';' token" } */
9
a
[
i
] =
b
[
i
] +
c
[
i
];
10
}
11
}