Index: src/x64/stub-cache-x64.cc |
=================================================================== |
--- src/x64/stub-cache-x64.cc (revision 2762) |
+++ src/x64/stub-cache-x64.cc (working copy) |
@@ -1738,6 +1738,18 @@ |
} |
+Object* ConstructStubCompiler::CompileConstructStub( |
+ SharedFunctionInfo* shared) { |
+ // Not implemented yet - just jump to generic stub. |
+ Code* code = Builtins::builtin(Builtins::JSConstructStubGeneric); |
+ Handle<Code> generic_construct_stub(code); |
+ __ Jump(generic_construct_stub, RelocInfo::CODE_TARGET); |
+ |
+ // Return the generated code. |
+ return GetCode(); |
+} |
+ |
+ |
#undef __ |
} } // namespace v8::internal |