Code cleanup to avoid LLVM dependency when building with quick only.
Change-Id: I0985c227d775c72fd23975d4c9bf673ba32615c2
diff --git a/compiler/dex/mir_graph.cc b/compiler/dex/mir_graph.cc
index dfd8e63..e4550d1 100644
--- a/compiler/dex/mir_graph.cc
+++ b/compiler/dex/mir_graph.cc
@@ -14,14 +14,16 @@
* limitations under the License.
*/
+#include "mir_graph.h"
+
+#include <inttypes.h>
+
#include "base/stl_util.h"
#include "compiler_internals.h"
#include "dex_file-inl.h"
-#include "leb128.h"
-#include "mir_graph.h"
-
#include "dex/quick/dex_file_to_method_inliner_map.h"
#include "dex/quick/dex_file_method_inliner.h"
+#include "leb128.h"
namespace art {