diff options
Diffstat (limited to 'runtime/thread.cc')
-rw-r--r-- | runtime/thread.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc index 13e3774ca0..21241d240b 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -76,6 +76,7 @@ #include "verify_object-inl.h" #include "vmap_table.h" #include "well_known_classes.h" +#include "interpreter/interpreter.h" #if ART_USE_FUTEXES #include "linux/futex.h" @@ -686,6 +687,7 @@ bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_en RemoveSuspendTrigger(); InitCardTable(); InitTid(); + interpreter::InitInterpreterTls(this); #ifdef __ANDROID__ __get_tls()[TLS_SLOT_ART_THREAD_SELF] = this; |