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

Unified Diff: src/IceGlobalContext.cpp

Issue 1202253002: Includes module header first. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes All Subzero includes to match LLVM style guide. Created 5 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
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index d4543c27e4cfab77dc12c98735867eee72af2346..674926899c1dd823a0adebb7dce1074ba4b9e783 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -12,23 +12,24 @@
//
//===----------------------------------------------------------------------===//
-#include <ctype.h> // isdigit(), isupper()
-#include <locale> // locale
-#include <unordered_map>
-
-#include "llvm/Support/Timer.h"
+#include "IceGlobalContext.h"
#include "IceCfg.h"
#include "IceCfgNode.h"
#include "IceClFlags.h"
#include "IceDefs.h"
#include "IceELFObjectWriter.h"
-#include "IceGlobalContext.h"
#include "IceGlobalInits.h"
#include "IceOperand.h"
#include "IceTargetLowering.h"
#include "IceTimerTree.h"
#include "IceTypes.h"
+#include "llvm/Support/Timer.h"
+
+#include <ctype.h> // isdigit(), isupper()
+#include <locale> // locale
+#include <unordered_map>
+
namespace std {
template <> struct hash<Ice::RelocatableTuple> {

Powered by Google App Engine
This is Rietveld 408576698