Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
52ba870eba17e634339622dbf103434ca31935eb
/
.
/
test
/
CodeGen
/
vector.c
blob: c92d2ca2b60cb460ee083b7a968f4fccbdf1e921 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm %s -o -
typedef
short
__v4hi __attribute__
((
__vector_size__
(
8
)));
void
f
()
{
__v4hi A
=
(
__v4hi
)
0LL
;
}
__v4hi x
=
{
1
,
2
,
3
};
__v4hi y
=
{
1
,
2
,
3
,
4
};