repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
2010-02-18-Dbg-VectorType.c
blob
d34031f09a18b0bb7328b38f89daea254f2add5e
1
// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
2
typedef
float
float4
__attribute__
((
vector_size
(
16
)));
3
4
int
main
(){
5
volatile
float4 x
= (
float4
) {
0.0
f
,
1.0
f
,
2.0
f
,
3.0
f
};
6
x
+=
x
;
7
return
0
;
8
}
9