diff options
author | Jiaxun Yang <jiaxun.yang@flygoat.com> | 2020-05-12 12:40:11 +0800 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-20 14:02:13 +0000 |
commit | eb094084927b979bb90b203a2d044e2650dca450 (patch) | |
tree | ce9bc4711c95e2d53a48123ad57d5158303210aa | |
parent | 89bbb5ddbae988075a985097b155f176af072c9d (diff) | |
download | uxp-eb094084927b979bb90b203a2d044e2650dca450.tar.gz |
Bug 1424978 - IonMonkey: MIPS: Fix ma_store_unaligned
Tag: #1542
-rw-r--r-- | js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp | 2 |
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; |