diff options
Diffstat (limited to 'src/compiler_llvm')
| -rw-r--r-- | src/compiler_llvm/art_module.ll | 4 | ||||
| -rw-r--r-- | src/compiler_llvm/generated/art_module.cc | 16 |
2 files changed, 2 insertions, 18 deletions
diff --git a/src/compiler_llvm/art_module.ll b/src/compiler_llvm/art_module.ll index 35cfaac577..a2da2b6376 100644 --- a/src/compiler_llvm/art_module.ll +++ b/src/compiler_llvm/art_module.ll @@ -35,7 +35,7 @@ declare void @__art_type_list(%JavaObject*, %ShadowFrame*) ; Thread ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -declare %JavaObject* @art_get_current_thread_from_code() readonly +declare %JavaObject* @art_get_current_thread_from_code() declare void @art_set_current_thread_from_code(%JavaObject*) declare void @art_lock_object_from_code(%JavaObject*, %JavaObject*) @@ -52,7 +52,7 @@ declare void @art_pop_shadow_frame_from_code() ; Exception ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -declare i1 @art_is_exception_pending_from_code() readonly +declare i1 @art_is_exception_pending_from_code() declare void @art_throw_div_zero_from_code() declare void @art_throw_array_bounds_from_code(i32, i32) diff --git a/src/compiler_llvm/generated/art_module.cc b/src/compiler_llvm/generated/art_module.cc index a337e40a10..b3963ef8dd 100644 --- a/src/compiler_llvm/generated/art_module.cc +++ b/src/compiler_llvm/generated/art_module.cc @@ -359,14 +359,6 @@ func_art_get_current_thread_from_code = Function::Create( func_art_get_current_thread_from_code->setCallingConv(CallingConv::C); } AttrListPtr func_art_get_current_thread_from_code_PAL; -{ - SmallVector<AttributeWithIndex, 4> Attrs; - AttributeWithIndex PAWI; - PAWI.Index = 4294967295U; PAWI.Attrs = Attribute::None | Attribute::ReadOnly; - Attrs.push_back(PAWI); - func_art_get_current_thread_from_code_PAL = AttrListPtr::get(Attrs.begin(), Attrs.end()); - -} func_art_get_current_thread_from_code->setAttributes(func_art_get_current_thread_from_code_PAL); Function* func_art_set_current_thread_from_code = mod->getFunction("art_set_current_thread_from_code"); @@ -444,14 +436,6 @@ func_art_is_exception_pending_from_code = Function::Create( func_art_is_exception_pending_from_code->setCallingConv(CallingConv::C); } AttrListPtr func_art_is_exception_pending_from_code_PAL; -{ - SmallVector<AttributeWithIndex, 4> Attrs; - AttributeWithIndex PAWI; - PAWI.Index = 4294967295U; PAWI.Attrs = Attribute::None | Attribute::ReadOnly; - Attrs.push_back(PAWI); - func_art_is_exception_pending_from_code_PAL = AttrListPtr::get(Attrs.begin(), Attrs.end()); - -} func_art_is_exception_pending_from_code->setAttributes(func_art_is_exception_pending_from_code_PAL); Function* func_art_throw_div_zero_from_code = mod->getFunction("art_throw_div_zero_from_code"); |