Skip to content

Commit

Permalink
PPC: Fix to use correct load instr
Browse files Browse the repository at this point in the history
[email protected], [email protected], [email protected]
BUG=
LOG=N

Review-Url: https://codereview.chromium.org/2776263002
Cr-Commit-Position: refs/heads/master@{#44157}
  • Loading branch information
bjaideep authored and Commit bot committed Mar 27, 2017
1 parent d7a0928 commit 6235899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ppc/macro-assembler-ppc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ void MacroAssembler::MaybeDropFrames() {
ExternalReference restart_fp =
ExternalReference::debug_restart_fp_address(isolate());
mov(r4, Operand(restart_fp));
LoadWordArith(r4, MemOperand(r4));
LoadP(r4, MemOperand(r4));
cmpi(r4, Operand::Zero());
Jump(isolate()->builtins()->FrameDropperTrampoline(), RelocInfo::CODE_TARGET,
ne);
Expand Down

0 comments on commit 6235899

Please sign in to comment.