Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jbmc/src/java_bytecode/convert_java_nondet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static goto_programt get_gen_nondet_init_instructions(
symbol_table,
source_loc,
skip_classid,
allocation_typet::DYNAMIC,
lifetimet::DYNAMIC,
object_factory_parameters,
update_in_placet::NO_UPDATE_IN_PLACE);

Expand Down
6 changes: 3 additions & 3 deletions jbmc/src/java_bytecode/java_entry_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ static void java_static_lifetime_init(
symbol_table,
source_location,
false,
allocation_typet::GLOBAL,
lifetimet::STATIC_GLOBAL,
parameters,
pointer_type_selector,
update_in_placet::NO_UPDATE_IN_PLACE);
Expand Down Expand Up @@ -348,7 +348,7 @@ exprt::operandst java_build_arguments(
init_code,
symbol_table,
parameters,
allocation_typet::LOCAL,
lifetimet::AUTOMATIC_LOCAL,
function.location,
pointer_type_selector);
}
Expand Down Expand Up @@ -394,7 +394,7 @@ exprt::operandst java_build_arguments(
init_code_for_type,
symbol_table,
parameters,
allocation_typet::DYNAMIC,
lifetimet::DYNAMIC,
function.location,
pointer_type_selector);
init_code_for_type.add(
Expand Down
Loading