Index: src/lithium-allocator.cc |
diff --git a/src/lithium-allocator.cc b/src/lithium-allocator.cc |
index a36f7de5c8e310683144d26f8e7155577280810a..ad035752ef67874f94de370cdda0f4548428d2b9 100644 |
--- a/src/lithium-allocator.cc |
+++ b/src/lithium-allocator.cc |
@@ -3,23 +3,23 @@ |
// found in the LICENSE file. |
#include "src/v8.h" |
-#include "src/lithium-allocator-inl.h" |
#include "src/hydrogen.h" |
+#include "src/lithium-allocator-inl.h" |
#include "src/string-stream.h" |
#if V8_TARGET_ARCH_IA32 |
-#include "src/ia32/lithium-ia32.h" |
+#include "src/ia32/lithium-ia32.h" // NOLINT |
#elif V8_TARGET_ARCH_X64 |
-#include "src/x64/lithium-x64.h" |
+#include "src/x64/lithium-x64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM64 |
-#include "src/arm64/lithium-arm64.h" |
+#include "src/arm64/lithium-arm64.h" // NOLINT |
#elif V8_TARGET_ARCH_ARM |
-#include "src/arm/lithium-arm.h" |
+#include "src/arm/lithium-arm.h" // NOLINT |
#elif V8_TARGET_ARCH_MIPS |
-#include "src/mips/lithium-mips.h" |
+#include "src/mips/lithium-mips.h" // NOLINT |
#elif V8_TARGET_ARCH_X87 |
-#include "src/x87/lithium-x87.h" |
+#include "src/x87/lithium-x87.h" // NOLINT |
#else |
#error "Unknown architecture." |
#endif |