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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr48389.c
blob
2ac18cdbe78b342831465754f6b9e2b33d43d801
1
/* PR middle-end/48389 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -mtune=pentiumpro -Wno-abi" } */
4
/* { dg-require-effective-target ia32 } */
5
typedef
float
V2SF
__attribute__
((
vector_size
(
128
)));
6
V2SF
foo
(
int
x
,
V2SF a
)
7
{
8
V2SF b
= {};
9
if
(
x
&
42
)
10
b
=
a
;
11
a
+=
b
;
12
return
a
;
13
}