diff options
Diffstat (limited to 'src/compiler_llvm/jni_compiler.cc')
| -rw-r--r-- | src/compiler_llvm/jni_compiler.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler_llvm/jni_compiler.cc b/src/compiler_llvm/jni_compiler.cc index 4994e69336..1fa0ce76b8 100644 --- a/src/compiler_llvm/jni_compiler.cc +++ b/src/compiler_llvm/jni_compiler.cc @@ -90,7 +90,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(method_object_addr, Method::DeclaringClassOffset().Int32Value(), irb_.getJObjectTy(), - kTBAARuntimeInfo); + kTBAAJRuntime); } // Actual argument (ignore method and this object) arg_begin = arg_iter; @@ -143,7 +143,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(thread_object_addr, Thread::JniEnvOffset().Int32Value(), irb_.getJObjectTy(), - kTBAARuntimeInfo); + kTBAAJRuntime); // Set thread state to kNative irb_.StoreToObjectOffset(thread_object_addr, @@ -156,7 +156,7 @@ CompiledMethod* JniCompiler::Compile() { irb_.LoadFromObjectOffset(method_object_addr, Method::NativeMethodOffset().Int32Value(), GetFunctionType(method_idx_, is_static, true)->getPointerTo(), - kTBAARuntimeInfo); + kTBAAJRuntime); // Load actual parameters std::vector<llvm::Value*> args; |