Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
2f0e89ea96292d2974eb1a7dddc0e9870aa86bb7
/
.
/
test
/
Sema
/
vector-init.c
blob: 5436cbac8c6d8c9617763d0ab13de84ae66937f3 [
file
] [
log
] [
blame
]
Nate Begeman
d47d4f5
2008-01-25 05:34:48 +0000
[
diff
] [
blame
]
1
// RUN: clang %s -verify -fsyntax-only
2
3
typedef
__attribute__
((
ocu_vector_type
(
4
)
))
float
float4
;
4
5
float4
foo
=
(
float4
){
1.0
,
2.0
,
3.0
,
4.0
};