Skip to content

Commit

Permalink
Bug 1419784 - [MIPS] Implement missing parts of Bug 1419497. r=jandem
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragan Mladjenovic committed Nov 22, 2017
1 parent 35c0174 commit 4a5b7d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/src/jit/MacroAssembler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3227,6 +3227,10 @@ MacroAssembler::emitPreBarrierFastPath(JSRuntime* rt, MIRType type, Register tem
ma_lsl(temp3, temp1, temp1);
#elif JS_CODEGEN_ARM64
Lsl(ARMRegister(temp1, 64), ARMRegister(temp1, 64), ARMRegister(temp3, 64));
#elif JS_CODEGEN_MIPS32
ma_sll(temp1, temp1, temp3);
#elif JS_CODEGEN_MIPS64
ma_dsll(temp1, temp1, temp3);
#elif JS_CODEGEN_NONE
MOZ_CRASH();
#else
Expand Down

0 comments on commit 4a5b7d0

Please sign in to comment.