| Index: src/top.h
|
| diff --git a/src/top.h b/src/top.h
|
| index 26ae542f59b72d0a6e01149dab757cafb4a53574..95a2e6c5a0806a2cf588fb91699f8e86e4e315d9 100644
|
| --- a/src/top.h
|
| +++ b/src/top.h
|
| @@ -116,12 +116,9 @@ class ThreadLocalTop BASE_EMBEDDED {
|
| Address c_entry_fp_; // the frame pointer of the top c entry frame
|
| Address handler_; // try-blocks are chained through the stack
|
|
|
| -#ifdef USE_SIMULATOR
|
| -#ifdef V8_TARGET_ARCH_ARM
|
| +#if defined(USE_SIMULATOR) && \
|
| + (defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_MIPS))
|
| Simulator* simulator_;
|
| -#elif V8_TARGET_ARCH_MIPS
|
| - assembler::mips::Simulator* simulator_;
|
| -#endif
|
| #endif // USE_SIMULATOR
|
|
|
| #ifdef ENABLE_LOGGING_AND_PROFILING
|
|
|