Commit b71352b0 authored by palfia@homejinni.com's avatar palfia@homejinni.com

MIPS: Fix AssertName() in MacroAssembler.

This commit fixes several debug mode test failures.

BUG=mjsunit/keyed-call-generic,mjsunit/keyed-call-ic

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13943 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 04d8eb82
......@@ -4914,8 +4914,8 @@ void MacroAssembler::AssertName(Register object) {
push(object);
lw(object, FieldMemOperand(object, HeapObject::kMapOffset));
lbu(object, FieldMemOperand(object, Map::kInstanceTypeOffset));
pop(object);
Check(le, "Operand is not a name", object, Operand(LAST_NAME_TYPE));
pop(object);
}
}
......
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