| Index: src/bootstrapper.cc
|
| ===================================================================
|
| --- src/bootstrapper.cc (revision 3220)
|
| +++ src/bootstrapper.cc (working copy)
|
| @@ -898,7 +898,7 @@
|
| Handle<JSFunction> fun =
|
| Factory::NewFunctionFromBoilerplate(boilerplate, context);
|
|
|
| - // Call function using the either the runtime object or the global
|
| + // Call function using either the runtime object or the global
|
| // object as the receiver. Provide no parameters.
|
| Handle<Object> receiver =
|
| Handle<Object>(use_runtime_context
|
| @@ -1547,6 +1547,7 @@
|
|
|
| CreateRoots(global_template, global_object);
|
|
|
| +#ifndef V8_TARGET_ARCH_MIPS
|
| if (!InstallNatives()) return;
|
|
|
| MakeFunctionInstancePrototypeWritable();
|
| @@ -1557,6 +1558,7 @@
|
| if (!InstallExtensions(extensions)) return;
|
|
|
| if (!InstallSpecialObjects()) return;
|
| +#endif
|
|
|
| result_ = global_context_;
|
| }
|
|
|