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
builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr77621.c
blob
e2804522a497bdb7e8432fcb50b327bdc4563823
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
/* { dg-additional-options "-mtune=atom -msse2" { target i?86-*-* x86_64-*-* } } */
4
5
void
6
foo
(
double
*
x
,
int
*
y
)
7
{
8
int
i
;
9
for
(
i
=
0
;
i
<
8
;
i
++)
10
x
[
i
] -=
y
[
i
] *
x
[
i
+
1
];
11
}