From 7b969ef8b4eb93d7a2be093b27280f12b8cd9ccb Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Thu, 10 Jun 2021 16:59:41 -0400 Subject: [PATCH] [SimplifyCFG] avoid 'tmp' variables in test file; NFC --- llvm/test/Transforms/SimplifyCFG/two-entry-phi-return.ll | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/llvm/test/Transforms/SimplifyCFG/two-entry-phi-return.ll b/llvm/test/Transforms/SimplifyCFG/two-entry-phi-return.ll index af64750..e9b52f4 100644 --- a/llvm/test/Transforms/SimplifyCFG/two-entry-phi-return.ll +++ b/llvm/test/Transforms/SimplifyCFG/two-entry-phi-return.ll @@ -4,21 +4,21 @@ define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind { ; CHECK-LABEL: @qux( ; CHECK-NEXT: entry: -; CHECK-NEXT: [[TMP7:%.*]] = icmp eq i8* %m, %n -; CHECK-NEXT: [[TMP15:%.*]] = icmp eq i8* %o, %p -; CHECK-NEXT: [[TMP15_:%.*]] = select i1 [[TMP7]], i1 [[TMP15]], i1 false, !prof !0 -; CHECK-NEXT: ret i1 [[TMP15_]] +; CHECK-NEXT: [[T7:%.*]] = icmp eq i8* [[M:%.*]], [[N:%.*]] +; CHECK-NEXT: [[T15:%.*]] = icmp eq i8* [[O:%.*]], [[P:%.*]] +; CHECK-NEXT: [[SPEC_SELECT:%.*]] = select i1 [[T7]], i1 [[T15]], i1 false, !prof [[PROF0:![0-9]+]] +; CHECK-NEXT: ret i1 [[SPEC_SELECT]] ; entry: - %tmp7 = icmp eq i8* %m, %n - br i1 %tmp7, label %bb, label %UnifiedReturnBlock, !prof !0 + %t7 = icmp eq i8* %m, %n + br i1 %t7, label %bb, label %UnifiedReturnBlock, !prof !0 bb: - %tmp15 = icmp eq i8* %o, %p + %t15 = icmp eq i8* %o, %p br label %UnifiedReturnBlock UnifiedReturnBlock: - %result = phi i1 [ 0, %entry ], [ %tmp15, %bb ] + %result = phi i1 [ 0, %entry ], [ %t15, %bb ] ret i1 %result } -- 2.7.4