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/IceELFSection.cpp b/src/IceELFSection.cpp
index 4ca2de4..8ca5b2d 100644
--- a/src/IceELFSection.cpp
+++ b/src/IceELFSection.cpp
@@ -11,11 +11,11 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Support/MathExtras.h"
+#include "IceELFSection.h"
 
 #include "IceDefs.h"
-#include "IceELFSection.h"
 #include "IceELFStreamer.h"
+#include "llvm/Support/MathExtras.h"
 
 using namespace llvm::ELF;