[arm][arm64] fix code for InstanceofStub

R=ulan@chromium.org, bmeurer@chromium.org

BUG=

Review URL: https://codereview.chromium.org/657813002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24654 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d83e0704
...@@ -1441,7 +1441,7 @@ void InstanceofStub::Generate(MacroAssembler* masm) { ...@@ -1441,7 +1441,7 @@ void InstanceofStub::Generate(MacroAssembler* masm) {
__ b(ne, &slow); __ b(ne, &slow);
// Null is not instance of anything. // Null is not instance of anything.
__ cmp(scratch, Operand(isolate()->factory()->null_value())); __ cmp(object, Operand(isolate()->factory()->null_value()));
__ b(ne, &object_not_null); __ b(ne, &object_not_null);
if (ReturnTrueFalseObject()) { if (ReturnTrueFalseObject()) {
__ Move(r0, factory->false_value()); __ Move(r0, factory->false_value());
......
...@@ -1569,7 +1569,7 @@ void InstanceofStub::Generate(MacroAssembler* masm) { ...@@ -1569,7 +1569,7 @@ void InstanceofStub::Generate(MacroAssembler* masm) {
__ Mov(result, res_false); __ Mov(result, res_false);
// Null is not instance of anything. // Null is not instance of anything.
__ Cmp(object_type, Operand(isolate()->factory()->null_value())); __ Cmp(object, Operand(isolate()->factory()->null_value()));
__ B(ne, &object_not_null); __ B(ne, &object_not_null);
__ Ret(); __ Ret();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment