Includes module header first.
This "include module header first" is part of the llvm style guide.
This change exposes "broken" headers that were accessing undefined types, or
even using types without forward declaring them.
BUG=
R=stichnot@chromium.org
Review URL: https://codereview.chromium.org/1202253002.
diff --git a/src/IceLiveness.cpp b/src/IceLiveness.cpp
index 0da611e..f3c4516 100644
--- a/src/IceLiveness.cpp
+++ b/src/IceLiveness.cpp
@@ -19,11 +19,12 @@
//
//===----------------------------------------------------------------------===//
+#include "IceLiveness.h"
+
#include "IceCfg.h"
#include "IceCfgNode.h"
#include "IceDefs.h"
#include "IceInst.h"
-#include "IceLiveness.h"
#include "IceOperand.h"
namespace Ice {