Sign in
cobalt
/
cobalt
/
e83fce97d7405b0b5e569d961aa431b1112ac6ac
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGen
/
2010-02-18-Dbg-VectorType.c
blob: eb17d11ac89b132fe62d40185cdf9838aecadb01 [
file
] [
log
] [
blame
]
// RUN: %clang -emit-llvm -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
typedef
float
float4
__attribute__
((
vector_size
(
16
)));
int
main
(){
volatile
float4
x
=
(
float4
)
{
0.0f
,
1.0f
,
2.0f
,
3.0f
};
x
+=
x
;
return
0
;
}