summaryrefslogtreecommitdiffstats
path: root/runtime/entrypoints/interpreter
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2013-08-13 22:10:30 -0700
committerIan Rogers <irogers@google.com>2013-08-13 22:30:39 -0700
commit0f40ac31134d9ae0f059d4c448165599dc8459c1 (patch)
tree2f908f5d7a51d4e7b028b307e5d43a9e794abc10 /runtime/entrypoints/interpreter
parent97a03e3cc86002b10889562a6b5b164cd2b99e7e (diff)
downloadart-0f40ac31134d9ae0f059d4c448165599dc8459c1.zip
art-0f40ac31134d9ae0f059d4c448165599dc8459c1.tar.gz
art-0f40ac31134d9ae0f059d4c448165599dc8459c1.tar.bz2
Fix races in small mode compiler filters setup
Fixes host tests in small art mode. Change-Id: I2579f872583f425607f91c1e58df68b05b5098bb
Diffstat (limited to 'runtime/entrypoints/interpreter')
-rw-r--r--runtime/entrypoints/interpreter/interpreter_entrypoints.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/entrypoints/interpreter/interpreter_entrypoints.cc b/runtime/entrypoints/interpreter/interpreter_entrypoints.cc
index f319a00..ecf98bc 100644
--- a/runtime/entrypoints/interpreter/interpreter_entrypoints.cc
+++ b/runtime/entrypoints/interpreter/interpreter_entrypoints.cc
@@ -27,8 +27,7 @@ namespace art {
extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh,
const DexFile::CodeItem* code_item,
- ShadowFrame* shadow_frame, JValue* result)
- SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
+ ShadowFrame* shadow_frame, JValue* result) {
mirror::ArtMethod* method = shadow_frame->GetMethod();
// Ensure static methods are initialized.
if (method->IsStatic()) {