Index: src/codegen.h |
diff --git a/src/codegen.h b/src/codegen.h |
index ec36b150d805e0a77f9541d0b11319b6fa8f3ab8..8ee8b24da2bac260ac6ddab141c6759ea1869e59 100644 |
--- a/src/codegen.h |
+++ b/src/codegen.h |
@@ -46,17 +46,17 @@ |
enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; |
#if V8_TARGET_ARCH_IA32 |
-#include "src/ia32/codegen-ia32.h" |
+#include "src/ia32/codegen-ia32.h" // NOLINT |
#elif V8_TARGET_ARCH_X64 |
-#include "src/x64/codegen-x64.h" |
+#include "src/x64/codegen-x64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM64 |
-#include "src/arm64/codegen-arm64.h" |
+#include "src/arm64/codegen-arm64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM |
-#include "src/arm/codegen-arm.h" |
+#include "src/arm/codegen-arm.h" // NOLINT |
#elif V8_TARGET_ARCH_MIPS |
-#include "src/mips/codegen-mips.h" |
+#include "src/mips/codegen-mips.h" // NOLINT |
#elif V8_TARGET_ARCH_X87 |
-#include "src/x87/codegen-x87.h" |
+#include "src/x87/codegen-x87.h" // NOLINT |
#else |
#error Unsupported target architecture. |
#endif |