| Index: src/arm/stub-cache-arm.cc
|
| ===================================================================
|
| --- src/arm/stub-cache-arm.cc (revision 2752)
|
| +++ src/arm/stub-cache-arm.cc (working copy)
|
| @@ -1342,6 +1342,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
|
|
|