[llvm-commits] [llvm] r115034 - /llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll

Gabor Greif ggreif at gmail.com
Wed Sep 29 03:45:43 PDT 2010


Author: ggreif
Date: Wed Sep 29 05:45:43 2010
New Revision: 115034

URL: http://llvm.org/viewvc/llvm-project?rev=115034&view=rev
Log:
do not compare actual branch labels; this may fix llvm-gcc-x86_64-darwin10-cross-mingw32 buildbot too

Modified:
    llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll

Modified: llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll?rev=115034&r1=115033&r2=115034&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/arm-and-tst-peephole.ll Wed Sep 29 05:45:43 2010
@@ -19,16 +19,16 @@
   %0 = ptrtoint i8* %tmp2 to i32
 
 ; CHECK:      ands r12, r12, #3
-; CHECK-NEXT: beq .LBB0_2
+; CHECK-NEXT: beq
 
 ; THUMB:      movs r5, #3
 ; THUMB-NEXT: mov r6, r4
 ; THUMB-NEXT: ands r6, r5
 ; THUMB-NEXT: tst r4, r5
-; THUMB-NEXT: beq .LBB0_3
+; THUMB-NEXT: beq
 
 ; T2:      ands r12, r12, #3
-; T2-NEXT: beq .LBB0_3
+; T2-NEXT: beq
 
   %and = and i32 %0, 3
   %tst = icmp eq i32 %and, 0





More information about the llvm-commits mailing list