summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiaxun Yang <jiaxun.yang@flygoat.com>2020-05-12 12:40:11 +0800
committerMoonchild <moonchild@palemoon.org>2020-05-20 14:02:13 +0000
commiteb094084927b979bb90b203a2d044e2650dca450 (patch)
treece9bc4711c95e2d53a48123ad57d5158303210aa
parent89bbb5ddbae988075a985097b155f176af072c9d (diff)
downloaduxp-eb094084927b979bb90b203a2d044e2650dca450.tar.gz
Bug 1424978 - IonMonkey: MIPS: Fix ma_store_unaligned
Tag: #1542
-rw-r--r--js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp b/js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp
index 839664b8ce..811fb01f11 100644
--- a/js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp
+++ b/js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp
@@ -616,7 +616,7 @@ MacroAssemblerMIPSShared::ma_store_unaligned(Register data, const BaseIndex& des
int16_t lowOffset, hiOffset;
Register base;
- asMasm().computeEffectiveAddress(dest, SecondScratchReg);
+ asMasm().computeScaledAddress(dest, SecondScratchReg);
if (Imm16::IsInSignedRange(dest.offset) && Imm16::IsInSignedRange(dest.offset + size / 8 - 1)) {
base = SecondScratchReg;