aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/init-vector.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/init-vector.c')
-rw-r--r--test/Sema/init-vector.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Sema/init-vector.c b/test/Sema/init-vector.c
new file mode 100644
index 000000000000..691ea97268fd
--- /dev/null
+++ b/test/Sema/init-vector.c
@@ -0,0 +1,17 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+
+typedef float __attribute__((vector_size (16))) v4f_t;
+
+typedef union {
+ struct {
+ float x, y, z, w;
+ }s;
+ v4f_t v;
+} vector_t;
+
+
+vector_t foo(v4f_t p)
+{
+ vector_t v = {.v = p};
+ return v;
+}