diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-09-29 10:45:43 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-09-29 10:45:43 +0000 |
commit | 1f01d45ee0aa23c6c69202bf894b0c113d349659 (patch) | |
tree | 0a4777ce8f3a08cbbc5939e174589bf1b461a183 /test/CodeGen/ARM | |
parent | 05642a3eba3f35aa8fdf6aa16d87561560e60af3 (diff) | |
download | external_llvm-1f01d45ee0aa23c6c69202bf894b0c113d349659.zip external_llvm-1f01d45ee0aa23c6c69202bf894b0c113d349659.tar.gz external_llvm-1f01d45ee0aa23c6c69202bf894b0c113d349659.tar.bz2 |
do not compare actual branch labels; this may fix llvm-gcc-x86_64-darwin10-cross-mingw32 buildbot too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM')
-rw-r--r-- | test/CodeGen/ARM/arm-and-tst-peephole.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/ARM/arm-and-tst-peephole.ll b/test/CodeGen/ARM/arm-and-tst-peephole.ll index 8d3c0e0..5b70dec 100644 --- a/test/CodeGen/ARM/arm-and-tst-peephole.ll +++ b/test/CodeGen/ARM/arm-and-tst-peephole.ll @@ -19,16 +19,16 @@ tailrecurse: ; preds = %sw.bb, %entry %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 |