diff options
author | 2014-02-18 18:37:26 +0000 | |
---|---|---|
committer | 2014-02-20 09:43:34 +0000 | |
commit | f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2 (patch) | |
tree | ae6cf8c43b724cf2c5d21bd12e0eca507dcc7842 /compiler/dex/mir_graph.cc | |
parent | e7da4cf71712a3d7a64166ceadfb176d07018d32 (diff) |
Code cleanup to avoid LLVM dependency when building with quick only.
Change-Id: I0985c227d775c72fd23975d4c9bf673ba32615c2
Diffstat (limited to 'compiler/dex/mir_graph.cc')
-rw-r--r-- | compiler/dex/mir_graph.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/compiler/dex/mir_graph.cc b/compiler/dex/mir_graph.cc index dfd8e6338d..e4550d1e60 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 { |