commit | 04d7aa92bc5548bc4d272b9480614f06248194cc | [log] [tgz] |
---|---|---|
author | Ian Rogers <irogers@google.com> | Sat Mar 16 14:29:17 2013 -0700 |
committer | Ian Rogers <irogers@google.com> | Sat Mar 16 14:29:17 2013 -0700 |
tree | 2b399853daab91995488c7d19a694063262f6531 | |
parent | aed0716b9592bb3095cdfc4b111011f9ed74877d [diff] |
Fix object verification. Refactor VERIFY_OBJECT_ENABLED to become less brittle to change enum and global constant. Change-Id: Ie405106be81dce9a913730c7f46a5659582fa18b
diff --git a/src/oat/runtime/arm/context_arm.cc b/src/oat/runtime/arm/context_arm.cc index 4612986..814e649 100644 --- a/src/oat/runtime/arm/context_arm.cc +++ b/src/oat/runtime/arm/context_arm.cc
@@ -17,6 +17,7 @@ #include "context_arm.h" #include "mirror/abstract_method.h" +#include "mirror/object-inl.h" #include "stack.h" #include "thread.h"
diff --git a/src/oat/runtime/callee_save_frame.h b/src/oat/runtime/callee_save_frame.h index 08cf9d8..dd2f3fa 100644 --- a/src/oat/runtime/callee_save_frame.h +++ b/src/oat/runtime/callee_save_frame.h
@@ -18,7 +18,7 @@ #define ART_SRC_OAT_RUNTIME_CALLEE_SAVE_FRAME_H_ #include "base/mutex.h" -#include "thread.h" +#include "thread-inl.h" namespace art { namespace mirror {
diff --git a/src/oat/runtime/support_instrumentation.cc b/src/oat/runtime/support_instrumentation.cc index f65717a..6598f19 100644 --- a/src/oat/runtime/support_instrumentation.cc +++ b/src/oat/runtime/support_instrumentation.cc
@@ -17,7 +17,7 @@ #include "base/logging.h" #include "instrumentation.h" #include "runtime.h" -#include "thread.h" +#include "thread-inl.h" #include "trace.h" namespace art {