From e341c919b03ab40e9561a4c6b223475a08df4f3d Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Mon, 5 Sep 2016 23:49:32 +0000 Subject: [PATCH] fix FileCheck variables for test added with r280677 The script (utils/update_test_checks.py) seems to have problems with variable names that start with the same string. llvm-svn: 280679 --- llvm/test/Transforms/InstCombine/icmp-div-constant.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/Transforms/InstCombine/icmp-div-constant.ll b/llvm/test/Transforms/InstCombine/icmp-div-constant.ll index 98900ef..4c0a568 100644 --- a/llvm/test/Transforms/InstCombine/icmp-div-constant.ll +++ b/llvm/test/Transforms/InstCombine/icmp-div-constant.ll @@ -16,7 +16,7 @@ define i32 @icmp_div(i16 %a, i16 %c) { ; CHECK-NEXT: [[PHITMP1:%.*]] = sext i1 [[NOT_CMP]] to i32 ; CHECK-NEXT: br label %exit ; CHECK: exit: -; CHECK-NEXT: [[PHI:%.*]] = phi i32 [ -1, %entry ], [ [[PHI:%.*]]tmp1, %then ] +; CHECK-NEXT: [[PHI:%.*]] = phi i32 [ -1, %entry ], [ [[PHITMP1]], %then ] ; CHECK-NEXT: ret i32 [[PHI]] ; entry: @@ -72,7 +72,7 @@ define i32 @icmp_div3(i16 %a, i16 %c) { ; CHECK-NEXT: [[PHITMP1:%.*]] = sext i1 [[NOT_CMP]] to i32 ; CHECK-NEXT: br label %exit ; CHECK: exit: -; CHECK-NEXT: [[PHI:%.*]] = phi i32 [ -1, %entry ], [ [[PHI:%.*]]tmp1, %then ] +; CHECK-NEXT: [[PHI:%.*]] = phi i32 [ -1, %entry ], [ [[PHITMP1]], %then ] ; CHECK-NEXT: ret i32 [[PHI]] ; entry: -- 2.7.4