Index: src/x64/lithium-x64.cc |
=================================================================== |
--- src/x64/lithium-x64.cc (revision 6825) |
+++ src/x64/lithium-x64.cc (working copy) |
@@ -1219,8 +1219,9 @@ |
LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
- Abort("Unimplemented: %s", "DoCallFunction"); |
- return NULL; |
+ argument_count_ -= instr->argument_count(); |
+ LCallFunction* result = new LCallFunction(); |
+ return MarkAsCall(DefineFixed(result, rax), instr); |
} |