fix incorrect lowering of __builtin_ia32_shufpd, rdar://6803924
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69428 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/x86.c b/test/CodeGen/x86.c
index d12f26c..10808dc 100644
--- a/test/CodeGen/x86.c
+++ b/test/CodeGen/x86.c
@@ -8,8 +8,16 @@
// RUN: grep "st" %t1 &&
// RUN: grep "st(1)" %t1
-void f() {
+void test1() {
int d1, d2;
asm ("" : "=a" (d1), "=b" (d2) :
"c" (0), "d" (0), "S" (0), "D" (0), "t" (0), "u" (0));
}
+
+
+// rdar://6803924
+typedef double T __attribute__ ((__vector_size__ (16)));
+T test2(T va) {
+ return __builtin_ia32_shufpd(va, va, 3);
+}
+