repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2010-02-18-Dbg-VectorType.c
blob
0a4826fcd3897e6ee2db7429e9af8ea7eb5a3e45
1
// RUN: %clang -emit-llvm -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
2
typedef
float
float4
__attribute__
((
vector_size
(
16
)));
3
4
int
main
(
void
){
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