repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initialize HasMetadata to zero.
[llvm/avr.git]
/
test
/
FrontendC++
/
2007-05-03-VectorInit.cpp
blob
b87f4d4665cae7bfc02ae81550925e2675892194
1
// RUN: %llvmgxx %s -S -emit-llvm -O0 -o -
2
// PR1378
3
4
typedef
float
v4sf
__attribute__
((
vector_size
(
16
)));
5
6
typedef
v4sf float4
;
7
8
static
float4
splat4
(
float
a
)
9
{
10
float4 tmp
= {
a
,
a
,
a
,
a
};
11
return
tmp
;
12
}
13
14
float4
foo
(
float
a
)
15
{
16
return
splat4
(
a
);
17
}