Chromium Code Reviews| Index: src/heap/heap.cc |
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc |
| index 5597553b733e4524bf2329c53487c190cbf53ca6..b194dde764db2dc8afc91bfd1a76704609e483de 100644 |
| --- a/src/heap/heap.cc |
| +++ b/src/heap/heap.cc |
| @@ -37,20 +37,20 @@ |
| #include "src/vm-state-inl.h" |
| #if V8_TARGET_ARCH_PPC && !V8_INTERPRETED_REGEXP |
| -#include "src/regexp-macro-assembler.h" // NOLINT |
| -#include "src/ppc/regexp-macro-assembler-ppc.h" // NOLINT |
| +#include "src/regexp/regexp-macro-assembler.h" // NOLINT |
|
Michael Lippautz
2015/08/12 14:19:55
nit: alignment off
Do we need NOLINT? If yes, ple
|
| +#include "src/regexp/ppc/regexp-macro-assembler-ppc.h" // NOLINT |
| #endif |
| #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP |
| -#include "src/regexp-macro-assembler.h" // NOLINT |
| -#include "src/arm/regexp-macro-assembler-arm.h" // NOLINT |
| +#include "src/regexp/regexp-macro-assembler.h" // NOLINT |
| +#include "src/regexp/arm/regexp-macro-assembler-arm.h" // NOLINT |
| #endif |
| #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP |
| -#include "src/regexp-macro-assembler.h" // NOLINT |
| -#include "src/mips/regexp-macro-assembler-mips.h" // NOLINT |
| +#include "src/regexp/regexp-macro-assembler.h" // NOLINT |
| +#include "src/regexp/mips/regexp-macro-assembler-mips.h" // NOLINT |
| #endif |
| #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP |
| -#include "src/regexp-macro-assembler.h" |
| -#include "src/mips64/regexp-macro-assembler-mips64.h" |
| +#include "src/regexp/regexp-macro-assembler.h" |
| +#include "src/regexp/mips64/regexp-macro-assembler-mips64.h" |
| #endif |
| namespace v8 { |