Index: src/x64/lithium-x64.cc |
=================================================================== |
--- src/x64/lithium-x64.cc (revision 6512) |
+++ src/x64/lithium-x64.cc (working copy) |
@@ -1055,8 +1055,7 @@ |
LInstruction* LChunkBuilder::DoGlobalReceiver(HGlobalReceiver* instr) { |
- Abort("Unimplemented: %s", "DoGlobalReceiver"); |
- return NULL; |
+ return DefineAsRegister(new LGlobalReceiver); |
} |
@@ -1422,8 +1421,8 @@ |
LInstruction* LChunkBuilder::DoCheckFunction(HCheckFunction* instr) { |
- Abort("Unimplemented: %s", "DoCheckFunction"); |
- return NULL; |
+ LOperand* value = UseRegisterAtStart(instr->value()); |
+ return AssignEnvironment(new LCheckFunction(value)); |
} |