From bde801b2a7e20f3de62cacc3ef643cf0ed6e2c27 Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Tue, 19 Jun 2012 03:45:29 +0000 Subject: [PATCH] Make MipsLongBranch::runOnMachineFunction return true. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158702 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsLongBranch.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Target/Mips/MipsLongBranch.cpp b/lib/Target/Mips/MipsLongBranch.cpp index 978c49ab30b..7be353f1901 100644 --- a/lib/Target/Mips/MipsLongBranch.cpp +++ b/lib/Target/Mips/MipsLongBranch.cpp @@ -375,7 +375,7 @@ bool MipsLongBranch::runOnMachineFunction(MachineFunction &F) { emitGPDisp(F, TII); if (SkipLongBranch) - return false; + return true; MF = &F; initMBBInfo(); @@ -393,9 +393,9 @@ bool MipsLongBranch::runOnMachineFunction(MachineFunction &F) { if (!I->Br || I->HasLongBranch) continue; - int64_t Offset = computeOffset(I->Br); - if (!ForceLongBranch) { + int64_t Offset = computeOffset(I->Br); + // Check if offset fits into 16-bit immediate field of branches. if ((I->Br->isConditionalBranch() || IsPIC) && isInt<16>(Offset / 4)) continue; @@ -414,5 +414,5 @@ bool MipsLongBranch::runOnMachineFunction(MachineFunction &F) { if (EverMadeChange) MF->RenumberBlocks(); - return EverMadeChange; + return true; } -- 2.34.1