| Index: src/jsregexp.cc
|
| diff --git a/src/jsregexp.cc b/src/jsregexp.cc
|
| index 81ad080da561e39b8ea831d3bfa30ca32705a62a..c24e1aabe864c7bcc3f0bff1c617807bdc0a6c5b 100644
|
| --- a/src/jsregexp.cc
|
| +++ b/src/jsregexp.cc
|
| @@ -31,6 +31,8 @@
|
| #include "src/arm64/regexp-macro-assembler-arm64.h" // NOLINT
|
| #elif V8_TARGET_ARCH_ARM
|
| #include "src/arm/regexp-macro-assembler-arm.h" // NOLINT
|
| +#elif V8_TARGET_ARCH_PPC
|
| +#include "src/ppc/regexp-macro-assembler-ppc.h" // NOLINT
|
| #elif V8_TARGET_ARCH_MIPS
|
| #include "src/mips/regexp-macro-assembler-mips.h" // NOLINT
|
| #elif V8_TARGET_ARCH_MIPS64
|
| @@ -6095,6 +6097,9 @@ RegExpEngine::CompilationResult RegExpEngine::Compile(
|
| #elif V8_TARGET_ARCH_ARM64
|
| RegExpMacroAssemblerARM64 macro_assembler(mode, (data->capture_count + 1) * 2,
|
| zone);
|
| +#elif V8_TARGET_ARCH_PPC
|
| + RegExpMacroAssemblerPPC macro_assembler(mode, (data->capture_count + 1) * 2,
|
| + zone);
|
| #elif V8_TARGET_ARCH_MIPS
|
| RegExpMacroAssemblerMIPS macro_assembler(mode, (data->capture_count + 1) * 2,
|
| zone);
|
|
|