Make MipsLongBranch::runOnMachineFunction return true.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158702 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Mips/MipsLongBranch.cpp b/lib/Target/Mips/MipsLongBranch.cpp
index 978c49a..7be353f 100644
--- a/lib/Target/Mips/MipsLongBranch.cpp
+++ b/lib/Target/Mips/MipsLongBranch.cpp
@@ -375,7 +375,7 @@
emitGPDisp(F, TII);
if (SkipLongBranch)
- return false;
+ return true;
MF = &F;
initMBBInfo();
@@ -393,9 +393,9 @@
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 @@
if (EverMadeChange)
MF->RenumberBlocks();
- return EverMadeChange;
+ return true;
}