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
PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr60267.c
blob
c95def2399ae6bb2fadfb5a0df689f03985a1d85
1
/* PR c++/60267 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -save-temps" } */
4
5
void
6
foo
(
int
*
a
,
int
*
b
,
int
*
c
)
7
{
8
int
i
;
9
#pragma GCC ivdep
10
for
(
i
=
0
;
i
<
64
;
i
++)
11
a
[
i
] =
b
[
i
] *
c
[
i
];
12
}
13