Fix an inverted condition.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106330 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2010-06-18 22:17:13 +00:00
parent 4b8921d1c7
commit 6a5e2832d0
4 changed files with 3 additions and 5 deletions

View File

@ -369,7 +369,7 @@ bool IfConverter::runOnMachineFunction(MachineFunction &MF) {
Roots.clear(); Roots.clear();
BBAnalysis.clear(); BBAnalysis.clear();
if (MadeChange && !IfCvtBranchFold) { if (MadeChange && IfCvtBranchFold) {
BranchFolder BF(false); BranchFolder BF(false);
BF.OptimizeFunction(MF, TII, BF.OptimizeFunction(MF, TII,
MF.getTarget().getRegisterInfo(), MF.getTarget().getRegisterInfo(),

View File

@ -1,7 +1,7 @@
; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \ ; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
; RUN: grep cmpne | count 1 ; RUN: grep cmpne | count 1
; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \ ; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
; RUN: grep bhi | count 1 ; RUN: grep bls | count 1
; Here, tail call wins over eliminating branches. It is 1 fewer instruction ; Here, tail call wins over eliminating branches. It is 1 fewer instruction
; and removes all stack accesses, so seems like a win. ; and removes all stack accesses, so seems like a win.

View File

@ -12,8 +12,6 @@ define weak arm_aapcs_vfpcc i32 @_ZNKSs7compareERKSs(%"struct.std::basic_string<
; CHECK: _ZNKSs7compareERKSs: ; CHECK: _ZNKSs7compareERKSs:
; CHECK: it eq ; CHECK: it eq
; CHECK-NEXT: subeq.w r0, r6, r8 ; CHECK-NEXT: subeq.w r0, r6, r8
; CHECK-NEXT: %bb
; CHECK-NEXT: %bb1
; CHECK-NEXT: ldmia.w sp, {r4, r5, r6, r8, r9, pc} ; CHECK-NEXT: ldmia.w sp, {r4, r5, r6, r8, r9, pc}
entry: entry:
%0 = tail call arm_aapcs_vfpcc i32 @_ZNKSs4sizeEv(%"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >"* %this) ; <i32> [#uses=3] %0 = tail call arm_aapcs_vfpcc i32 @_ZNKSs4sizeEv(%"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >"* %this) ; <i32> [#uses=3]

View File

@ -31,7 +31,7 @@ entry:
; CHECK: CountTree: ; CHECK: CountTree:
; CHECK: it eq ; CHECK: it eq
; CHECK: cmpeq ; CHECK: cmpeq
; CHECK: beq ; CHECK: bne
; CHECK: itt eq ; CHECK: itt eq
; CHECK: moveq ; CHECK: moveq
; CHECK: popeq ; CHECK: popeq