[llvm] r268772 - The associated PR for this test was PR27135 not PR27132.

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Fri May 6 11:23:14 PDT 2016


Author: echristo
Date: Fri May  6 13:23:14 2016
New Revision: 268772

URL: http://llvm.org/viewvc/llvm-project?rev=268772&view=rev
Log:
The associated PR for this test was PR27135 not PR27132.

Modified:
    llvm/trunk/test/CodeGen/X86/switch.ll

Modified: llvm/trunk/test/CodeGen/X86/switch.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/switch.ll?rev=268772&r1=268771&r2=268772&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/switch.ll (original)
+++ llvm/trunk/test/CodeGen/X86/switch.ll Fri May  6 13:23:14 2016
@@ -750,7 +750,7 @@ return: ret void
 }
 
 
-define i32 @pr27132(i32 %i) {
+define i32 @pr27135(i32 %i) {
 entry:
   br i1 undef, label %sw, label %end
 sw:
@@ -770,7 +770,7 @@ end:
   %p = phi i32 [ 1, %sw ], [ 0, %entry ]
   ret i32 %p
 
-; CHECK-LABEL: pr27132:
+; CHECK-LABEL: pr27135:
 ; The switch is lowered with bit tests. Since the case range is contiguous, the
 ; second bit test is redundant and can be skipped. Check that we don't update
 ; the phi node with an incoming value from the MBB of the skipped bit test




More information about the llvm-commits mailing list