Add a triple to switch.ll test.
[oota-llvm.git] / test / CodeGen / X86 / 2006-11-27-SelectLegalize.ll
index 5cebff5bacc18e8dc60881797144fc42b109fe51..ba83a8db839962515a33ad3611a08a3582bba32a 100644 (file)
@@ -1,8 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep test.*1
+; RUN: llc < %s -march=x86 | FileCheck %s
 ; PR1016
 
-int %test(int %A, int %B, int %C) {
-       %a = trunc int %A to bool
-       %D = select bool %a, int %B, int %C
-       ret int %D
+; CHECK: {{test.*1}}
+
+define i32 @test(i32 %A, i32 %B, i32 %C) {
+        %a = trunc i32 %A to i1         ; <i1> [#uses=1]
+        %D = select i1 %a, i32 %B, i32 %C               ; <i32> [#uses=1]
+        ret i32 %D
 }
+