| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 64fc2ca62ee96191f900e37571e8d0707a5ecdbf..d408034f29ab31cb878239ce42a59d998a227de6 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -80,10 +80,19 @@ namespace internal {
|
| #define CODE_STUB_LIST_ARM(V)
|
| #endif
|
|
|
| +// List of code stubs only used on MIPS platforms.
|
| +#ifdef V8_TARGET_ARCH_MIPS
|
| +#define CODE_STUB_LIST_MIPS(V) \
|
| + V(RegExpCEntry)
|
| +#else
|
| +#define CODE_STUB_LIST_MIPS(V)
|
| +#endif
|
| +
|
| // Combined list of code stubs.
|
| #define CODE_STUB_LIST(V) \
|
| CODE_STUB_LIST_ALL_PLATFORMS(V) \
|
| - CODE_STUB_LIST_ARM(V)
|
| + CODE_STUB_LIST_ARM(V) \
|
| + CODE_STUB_LIST_MIPS(V)
|
|
|
| // Mode to overwrite BinaryExpression values.
|
| enum OverwriteMode { NO_OVERWRITE, OVERWRITE_LEFT, OVERWRITE_RIGHT };
|
|
|