summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsLongBranch.cpp
diff options
context:
space:
mode:
authorZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-11-30 19:12:28 +0000
committerZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-11-30 19:12:28 +0000
commit304964c1031372b6714e48199a021c345d132372 (patch)
treeb205d37c4b43eb59528693d48aad8fd633cd96ef /lib/Target/Mips/MipsLongBranch.cpp
parent6fdef5ecd770f62366b75f1d4c8e17caf2fe0bec (diff)
downloadllvm-304964c1031372b6714e48199a021c345d132372.tar.gz
llvm-304964c1031372b6714e48199a021c345d132372.tar.bz2
llvm-304964c1031372b6714e48199a021c345d132372.tar.xz
Fixed issue with microMIPS long branch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsLongBranch.cpp')
-rw-r--r--lib/Target/Mips/MipsLongBranch.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsLongBranch.cpp b/lib/Target/Mips/MipsLongBranch.cpp
index ea8cc80283..2efe57847a 100644
--- a/lib/Target/Mips/MipsLongBranch.cpp
+++ b/lib/Target/Mips/MipsLongBranch.cpp
@@ -437,8 +437,10 @@ bool MipsLongBranch::runOnMachineFunction(MachineFunction &F) {
if (!I->Br || I->HasLongBranch)
continue;
+ int ShVal = TM.getSubtarget<MipsSubtarget>().inMicroMipsMode() ? 2 : 4;
+
// Check if offset fits into 16-bit immediate field of branches.
- if (!ForceLongBranch && isInt<16>(computeOffset(I->Br) / 4))
+ if (!ForceLongBranch && isInt<16>(computeOffset(I->Br) / ShVal))
continue;
I->HasLongBranch = true;