Skip to content
Merged
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
4 changes: 2 additions & 2 deletions jbmc/src/java_bytecode/java_string_library_preprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1073,8 +1073,8 @@ codet java_string_library_preprocesst::make_float_to_string_code(
// Case of simple notation
ieee_floatt bound_inf_float(float_spec);
ieee_floatt bound_sup_float(float_spec);
bound_inf_float.from_float(1e-3);
bound_sup_float.from_float(1e7);
bound_inf_float.from_float(1e-3f);
bound_sup_float.from_float(1e7f);
bound_inf_float.change_spec(float_spec);
bound_sup_float.change_spec(float_spec);
constant_exprt bound_inf=bound_inf_float.to_expr();
Expand Down