[X86][SSE] Added full set of 128-bit vector shift tests.
[oota-llvm.git] / test / CodeGen / X86 / bigstructret.ll
index 633995d5d788034cc867235f69bbfecd95164804..3c499fae820ff9e1a1e413894b19d9c55879b611 100644 (file)
@@ -1,12 +1,15 @@
-; RUN: llc < %s -march=x86 -o %t
-; RUN: grep "movl      .24601, 12(%ecx)" %t
-; RUN: grep "movl      .48, 8(%ecx)" %t
-; RUN: grep "movl      .24, 4(%ecx)" %t
-; RUN: grep "movl      .12, (%ecx)" %t
+; RUN: llc < %s -march=x86 | FileCheck %s
 
 %0 = type { i32, i32, i32, i32 }
+%1 = type { i1, i1, i1, i32 }
 
-define internal fastcc %0 @ReturnBigStruct() nounwind readnone {
+; CHECK: ReturnBigStruct
+; CHECK: movl $24601, 12(%ecx)
+; CHECK: movl  $48, 8(%ecx)
+; CHECK: movl  $24, 4(%ecx)
+; CHECK: movl  $12, (%ecx)
+
+define fastcc %0 @ReturnBigStruct() nounwind readnone {
 entry:
   %0 = insertvalue %0 zeroinitializer, i32 12, 0
   %1 = insertvalue %0 %0, i32 24, 1
@@ -15,3 +18,17 @@ entry:
   ret %0 %3
 }
 
+; CHECK: ReturnBigStruct2
+; CHECK: movl  $48, 4(%ecx)
+; CHECK: movb  $1, 2(%ecx)
+; CHECK: movb  $1, 1(%ecx)
+; CHECK: movb  $0, (%ecx)
+
+define fastcc %1 @ReturnBigStruct2() nounwind readnone {
+entry:
+  %0 = insertvalue %1 zeroinitializer, i1 false, 0
+  %1 = insertvalue %1 %0, i1 true, 1
+  %2 = insertvalue %1 %1, i1 true, 2
+  %3 = insertvalue %1 %2, i32 48, 3
+  ret %1 %3
+}