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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
sse-vect-types.c
blob
de799aba2c48bc3f8d5c59e53f2b19ce866acff3
1
/* { dg-do compile } */
2
/* { dg-options "-O0 -msse2" } */
3
4
#include <xmmintrin.h>
5
6
__m128d
foo1
(
__m128d z
,
__m128d a
,
int
N
) {
7
int
i
;
8
for
(
i
=
0
;
i
<
N
;
i
++) {
9
a
=
_mm_add_ps
(
z
,
a
);
/* { dg-error "incompatible type" } */
10
}
11
return
a
;
12
}