diff options
| author | 2012-07-23 15:51:35 -0700 | |
|---|---|---|
| committer | 2012-07-23 15:51:35 -0700 | |
| commit | 22fc28eb95191a1957025b219452c09c7fbb6bd0 (patch) | |
| tree | 530338ce3c01e1b226dae2aa71ff2386cd514d2c /src | |
| parent | 703f2cd1f4d1eb5ab5c9792ca2de9ffb39378203 (diff) | |
| parent | 2a5885caa02e1274f35ffb187bc78a6ab7fdb334 (diff) | |
Merge "Reorder the included header." into ics-mr1-plus-art
Diffstat (limited to 'src')
| -rw-r--r-- | src/compiler_llvm/runtime_support_llvm.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler_llvm/runtime_support_llvm.cc b/src/compiler_llvm/runtime_support_llvm.cc index bf3c9ba28b..a42696c597 100644 --- a/src/compiler_llvm/runtime_support_llvm.cc +++ b/src/compiler_llvm/runtime_support_llvm.cc @@ -14,6 +14,10 @@ * limitations under the License. */ +#include "runtime_support_llvm.h" + +#include "ScopedLocalRef.h" +#include "asm_support.h" #include "class_linker.h" #include "compiler_runtime_func_list.h" #include "dex_file.h" @@ -24,9 +28,7 @@ #include "reflection.h" #include "runtime_support.h" #include "runtime_support_func_list.h" -#include "runtime_support_llvm.h" #include "scoped_jni_thread_state.h" -#include "ScopedLocalRef.h" #include "thread.h" #include "thread_list.h" #include "utils_llvm.h" @@ -39,8 +41,6 @@ #include <stdint.h> #include <stdlib.h> -#include "asm_support.h" - namespace art { //---------------------------------------------------------------------------- |