Skip to content

Commit

Permalink
fix-AtomicEffectOp (mozilla#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
luyahan authored Nov 11, 2022
1 parent a20efa4 commit d6f1a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/jit/riscv64/MacroAssembler-riscv64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2573,7 +2573,7 @@ static void AtomicEffectOp(MacroAssembler& masm,
masm.andi(valueTemp, valueTemp, 0xff);
break;
case 2:
masm.ma_and(valueTemp, value, Imm32(0xffff));
masm.ma_and(valueTemp, valueTemp, Imm32(0xffff));
break;
}

Expand Down

0 comments on commit d6f1a84

Please sign in to comment.