diff --git a/src/java_bytecode/java_bytecode_convert_method.cpp b/src/java_bytecode/java_bytecode_convert_method.cpp index a289ee14f58..7e4a1ef1f46 100644 --- a/src/java_bytecode/java_bytecode_convert_method.cpp +++ b/src/java_bytecode/java_bytecode_convert_method.cpp @@ -413,7 +413,9 @@ void java_bytecode_convert_methodt::convert( method_has_this=code_type.has_this(); tmp_vars.clear(); - method_symbol.value=convert_instructions(m.instructions, code_type); + + if((!m.is_abstract) && (!m.is_native)) + method_symbol.value=convert_instructions(m.instructions, code_type); // do we have the method symbol already? const auto s_it=symbol_table.symbols.find(method.get_name());