diff options
author | Jiaxun Yang <jiaxun.yang@flygoat.com> | 2020-05-12 12:40:13 +0800 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-20 14:03:04 +0000 |
commit | f411e027165e7d95a6119d8dabbc15e4f3a206e8 (patch) | |
tree | f599523af694eab863e9c22be2e26f434c4ba15d /js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp | |
parent | a34d02924c825b17af0fd505d8fdb890d5ae5dc1 (diff) | |
download | UXP-f411e027165e7d95a6119d8dabbc15e4f3a206e8.tar UXP-f411e027165e7d95a6119d8dabbc15e4f3a206e8.tar.gz UXP-f411e027165e7d95a6119d8dabbc15e4f3a206e8.tar.lz UXP-f411e027165e7d95a6119d8dabbc15e4f3a206e8.tar.xz UXP-f411e027165e7d95a6119d8dabbc15e4f3a206e8.zip |
Bug 1330942 - move MemoryAccessDesc::isUnaligned to the ARM/MIPS platform layer
Tag: #1542
Diffstat (limited to 'js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp')
-rw-r--r-- | js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp b/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp index 1a5a3987b..2526fc237 100644 --- a/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp +++ b/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp @@ -1915,7 +1915,7 @@ CodeGeneratorMIPSShared::emitWasmLoad(T* lir) BaseIndex address(HeapReg, ptr, TimesOne); - if (mir->access().isUnaligned()) { + if (IsUnaligned(mir->access())) { Register temp = ToRegister(lir->getTemp(1)); if (isFloat) { @@ -2000,7 +2000,7 @@ CodeGeneratorMIPSShared::emitWasmStore(T* lir) BaseIndex address(HeapReg, ptr, TimesOne); - if (mir->access().isUnaligned()) { + if (IsUnaligned(mir->access())) { Register temp = ToRegister(lir->getTemp(1)); if (isFloat) { |