summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.cc
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2013-07-26 12:05:57 -0700
committerIan Rogers <irogers@google.com>2013-07-29 09:52:11 -0700
commit166db04e259ca51838c311891598664deeed85ad (patch)
tree5ffa63c1b3bf58e92be2890c54f0ba6fdec2059e /runtime/runtime.cc
parentd41119e863a9f9c5809b7732d30870ffd237b60c (diff)
downloadart-166db04e259ca51838c311891598664deeed85ad.zip
art-166db04e259ca51838c311891598664deeed85ad.tar.gz
art-166db04e259ca51838c311891598664deeed85ad.tar.bz2
Move assembler out of runtime into compiler/utils.
Other directory layout bits of clean up. There is still work to separate quick and portable in some files (e.g. argument visitor, proxy..). Change-Id: If8fecffda8ba5c4c47a035f0c622c538c6b58351
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r--runtime/runtime.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index 35667e7..485c636 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -28,11 +28,11 @@
#include <limits>
#include <vector>
+#include "arch/arm/registers_arm.h"
+#include "arch/mips/registers_mips.h"
+#include "arch/x86/registers_x86.h"
#include "atomic.h"
#include "class_linker.h"
-#include "constants_arm.h"
-#include "constants_mips.h"
-#include "constants_x86.h"
#include "debugger.h"
#include "gc/accounting/card_table-inl.h"
#include "gc/heap.h"