| Index: src/v8.cc
|
| diff --git a/src/v8.cc b/src/v8.cc
|
| index 27648b144a44fd6b3cfa2ded0a23e451aa3d88c0..b19eea9f152ca369471f2211f9643350a820c10f 100644
|
| --- a/src/v8.cc
|
| +++ b/src/v8.cc
|
| @@ -81,12 +81,10 @@ bool V8::Initialize(Deserializer* des) {
|
| OS::Setup();
|
|
|
| // Initialize other runtime facilities
|
| -#if defined(USE_SIMULATOR)
|
| -#if defined(V8_TARGET_ARCH_ARM)
|
| +
|
| +#if defined(USE_SIMULATOR) && \
|
| + (defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_MIPS))
|
| Simulator::Initialize();
|
| -#elif defined(V8_TARGET_ARCH_MIPS)
|
| - ::assembler::mips::Simulator::Initialize();
|
| -#endif
|
| #endif
|
|
|
| { // NOLINT
|
|
|