We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e32a4 commit df41509Copy full SHA for df41509
jbmc/src/java_bytecode/java_entry_point.cpp
@@ -399,7 +399,7 @@ exprt::operandst java_build_arguments(
399
400
init_code.add(
401
generate_nondet_switch(
402
- id2string(function.base_name) + "_" + std::to_string(param_number),
+ id2string(function.name) + "_" + std::to_string(param_number),
403
cases,
404
java_int_type(),
405
function.location,
jbmc/src/java_bytecode/nondet.cpp
@@ -46,7 +46,7 @@ symbol_exprt generate_nondet_int(
46
// Declare a symbol for the non deterministic integer.
47
const symbol_exprt &nondet_symbol = get_fresh_aux_symbol(
48
int_type,
49
- name_prefix + "::nondet_int",
+ name_prefix,
50
"nondet_int",
51
source_location,
52
ID_java,
0 commit comments