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

Unified Diff: src/IceCompileServer.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/IceCompileServer.cpp
diff --git a/src/IceCompileServer.cpp b/src/IceCompileServer.cpp
index 44563439521b42b98723eda1a9590a74e93c1d28..2552544e3b19cb7cd1d0e2e5820596a052f78843 100644
--- a/src/IceCompileServer.cpp
+++ b/src/IceCompileServer.cpp
@@ -11,25 +11,24 @@
//
//===----------------------------------------------------------------------===//
-#include <fstream>
-#include <iostream>
-#include <thread>
+#include "IceCompileServer.h"
+#include "IceClFlags.h"
+#include "IceClFlagsExtra.h"
+#include "IceELFStreamer.h"
+#include "IceGlobalContext.h"
// Include code to handle converting textual bitcode records to binary (for
// INPUT_IS_TEXTUAL_BITCODE).
#include "llvm/Bitcode/NaCl/NaClBitcodeMungeUtils.h"
-
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/raw_os_ostream.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/StreamingMemoryObject.h"
-#include "IceClFlags.h"
-#include "IceClFlagsExtra.h"
-#include "IceCompileServer.h"
-#include "IceELFStreamer.h"
-#include "IceGlobalContext.h"
+#include <fstream>
+#include <iostream>
+#include <thread>
namespace Ice {

Powered by Google App Engine
This is Rietveld 408576698