Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr77621.c
blob: e2804522a497bdb7e8432fcb50b327bdc4563823 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* { dg-additional-options "-mtune=atom -msse2" { target i?86-*-* x86_64-*-* } } */
void
foo
(
double
*
x
,
int
*
y
)
{
int
i
;
for
(
i
=
0
;
i
<
8
;
i
++)
x
[
i
]
-=
y
[
i
]
*
x
[
i
+
1
];
}