| Index: src/x64/lithium-x64.cc
|
| ===================================================================
|
| --- src/x64/lithium-x64.cc (revision 6934)
|
| +++ src/x64/lithium-x64.cc (working copy)
|
| @@ -1502,8 +1502,10 @@
|
|
|
|
|
| LInstruction* LChunkBuilder::DoHasInstanceType(HHasInstanceType* instr) {
|
| - Abort("Unimplemented: %s", "DoHasInstanceType");
|
| - return NULL;
|
| + ASSERT(instr->value()->representation().IsTagged());
|
| + LOperand* value = UseRegisterAtStart(instr->value());
|
| +
|
| + return DefineAsRegister(new LHasInstanceType(value));
|
| }
|
|
|
|
|
|
|