Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1556)

Unified Diff: src/frames-inl.h

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/flags.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames-inl.h
diff --git a/src/frames-inl.h b/src/frames-inl.h
index 02e7fb44da68c4a0dea2fd718510de1c7578e486..3c05268713a6f35fddf86506b9e61530ed0eb537 100644
--- a/src/frames-inl.h
+++ b/src/frames-inl.h
@@ -10,17 +10,17 @@
#include "src/v8memory.h"
#if V8_TARGET_ARCH_IA32
-#include "src/ia32/frames-ia32.h"
+#include "src/ia32/frames-ia32.h" // NOLINT
#elif V8_TARGET_ARCH_X64
-#include "src/x64/frames-x64.h"
+#include "src/x64/frames-x64.h" // NOLINT
#elif V8_TARGET_ARCH_ARM64
-#include "src/arm64/frames-arm64.h"
+#include "src/arm64/frames-arm64.h" // NOLINT
#elif V8_TARGET_ARCH_ARM
-#include "src/arm/frames-arm.h"
+#include "src/arm/frames-arm.h" // NOLINT
#elif V8_TARGET_ARCH_MIPS
-#include "src/mips/frames-mips.h"
+#include "src/mips/frames-mips.h" // NOLINT
#elif V8_TARGET_ARCH_X87
-#include "src/x87/frames-x87.h"
+#include "src/x87/frames-x87.h" // NOLINT
#else
#error Unsupported target architecture.
#endif
« no previous file with comments | « src/flags.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698