[llvm] r263347 - update test to use FileCheck
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 12 13:09:26 PST 2016
Author: spatel
Date: Sat Mar 12 15:09:26 2016
New Revision: 263347
URL: http://llvm.org/viewvc/llvm-project?rev=263347&view=rev
Log:
update test to use FileCheck
Modified:
llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll
Modified: llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll?rev=263347&r1=263346&r2=263347&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll (original)
+++ llvm/trunk/test/Transforms/SimplifyCFG/PhiEliminate2.ll Sat Mar 12 15:09:26 2016
@@ -1,17 +1,25 @@
-; RUN: opt < %s -simplifycfg -S | not grep br
+; RUN: opt < %s -simplifycfg -S | FileCheck %s
-define i32 @test(i1 %C, i32 %V1, i32 %V2, i16 %V3) {
+define i32 @FoldTwoEntryPHINode(i1 %C, i32 %V1, i32 %V2, i16 %V3) {
entry:
br i1 %C, label %then, label %else
-then: ; preds = %entry
- %V4 = or i32 %V2, %V1 ; <i32> [#uses=1]
+then:
+ %V4 = or i32 %V2, %V1
br label %Cont
-else: ; preds = %entry
- %V5 = sext i16 %V3 to i32 ; <i32> [#uses=1]
+else:
+ %V5 = sext i16 %V3 to i32
br label %Cont
-Cont: ; preds = %then, %else
- %V6 = phi i32 [ %V5, %else ], [ %V4, %then ] ; <i32> [#uses=0]
- call i32 @test( i1 false, i32 0, i32 0, i16 0 ) ; <i32>:0 [#uses=0]
+Cont:
+ %V6 = phi i32 [ %V5, %else ], [ %V4, %then ]
+ call i32 @FoldTwoEntryPHINode( i1 false, i32 0, i32 0, i16 0 )
ret i32 %V1
+
+; CHECK-LABEL: @FoldTwoEntryPHINode(
+; CHECK-NEXT: entry:
+; CHECK-NEXT: %V5 = sext i16 %V3 to i32
+; CHECK-NEXT: %V4 = or i32 %V2, %V1
+; CHECK-NEXT: %V6 = select i1 %C, i32 %V4, i32 %V5
+; CHECK-NEXT: %0 = call i32 @FoldTwoEntryPHINode(i1 false, i32 0, i32 0, i16 0)
+; CHECK-NEXT: ret i32 %V1
}
More information about the llvm-commits
mailing list