We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b6a013 + a5fdbdc commit 15db047Copy full SHA for 15db047
src/java_bytecode/java_bytecode_convert_method.cpp
@@ -413,7 +413,9 @@ void java_bytecode_convert_methodt::convert(
413
method_has_this=code_type.has_this();
414
415
tmp_vars.clear();
416
- method_symbol.value=convert_instructions(m.instructions, code_type);
+
417
+ if((!m.is_abstract) && (!m.is_native))
418
+ method_symbol.value=convert_instructions(m.instructions, code_type);
419
420
// do we have the method symbol already?
421
const auto s_it=symbol_table.symbols.find(method.get_name());
0 commit comments