Reviewers: Søren Gjesse, Description: Fix the last USE_SIMULATOR mips issue introduced with my last arm simulator change.
Please review this at http://codereview.chromium.org/4151005/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/top.h Index: src/top.h =================================================================== --- src/top.h (revision 5713) +++ src/top.h (working copy) @@ -105,7 +105,11 @@ Address handler_; // try-blocks are chained through the stack #ifdef USE_SIMULATOR +#ifdef V8_TARGET_ARCH_ARM assembler::arm::Simulator* simulator_; +#elif V8_TARGET_ARCH_MIPS + assembler::mips::Simulator* simulator_; +#endif #endif // USE_SIMULATOR #ifdef ENABLE_LOGGING_AND_PROFILING -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
