Index: src/regexp/regexp-macro-assembler-irregexp-inl.h |
diff --git a/src/regexp/regexp-macro-assembler-irregexp-inl.h b/src/regexp/regexp-macro-assembler-irregexp-inl.h |
index 4d0b1bc0a7ca835cfd3920ae2069237f04f109f9..a60212903d88df72f9007fecdb955e66428118ea 100644 |
--- a/src/regexp/regexp-macro-assembler-irregexp-inl.h |
+++ b/src/regexp/regexp-macro-assembler-irregexp-inl.h |
@@ -5,14 +5,14 @@ |
#ifndef V8_REGEXP_REGEXP_MACRO_ASSEMBLER_IRREGEXP_INL_H_ |
#define V8_REGEXP_REGEXP_MACRO_ASSEMBLER_IRREGEXP_INL_H_ |
+#ifdef V8_INTERPRETED_REGEXP |
+ |
#include "src/ast/ast.h" |
#include "src/regexp/bytecodes-irregexp.h" |
namespace v8 { |
namespace internal { |
-#ifdef V8_INTERPRETED_REGEXP |
- |
void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, |
uint32_t twenty_four_bits) { |
uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte); |
@@ -54,9 +54,9 @@ void RegExpMacroAssemblerIrregexp::Emit32(uint32_t word) { |
pc_ += 4; |
} |
-#endif // V8_INTERPRETED_REGEXP |
- |
} // namespace internal |
} // namespace v8 |
+#endif // V8_INTERPRETED_REGEXP |
+ |
#endif // V8_REGEXP_REGEXP_MACRO_ASSEMBLER_IRREGEXP_INL_H_ |