]> granicus.if.org Git - clang/commitdiff
Allow initializing a vector with a vector in addition to allowing a list
authorEli Friedman <eli.friedman@gmail.com>
Sat, 13 Jun 2009 10:38:46 +0000 (10:38 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Sat, 13 Jun 2009 10:38:46 +0000 (10:38 +0000)
of the elements.  Issue reported on cfe-dev by Mattias Holm.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73292 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaInit.cpp
test/Sema/init-vector.c [new file with mode: 0644]

index 4e0eb1d431fe2de8dbd635fce99550a5bb6e0031..45085962d488a6e588d28d6cd20ebfb2c0f70da6 100644 (file)
@@ -674,7 +674,7 @@ void InitListChecker::CheckSubElementType(InitListExpr *IList,
       //   compatible structure or union type. In the latter case, the
       //   initial value of the object, including unnamed members, is
       //   that of the expression.
-      if (ElemType->isRecordType() &&
+      if ((ElemType->isRecordType() || ElemType->isVectorType()) &&
           SemaRef.Context.hasSameUnqualifiedType(expr->getType(), ElemType)) {
         UpdateStructuredListElement(StructuredList, StructuredIndex, expr);
         ++Index;
diff --git a/test/Sema/init-vector.c b/test/Sema/init-vector.c
new file mode 100644 (file)
index 0000000..691ea97
--- /dev/null
@@ -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;
+}