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.
function_name
1 parent aa61489 commit 69ec03bCopy full SHA for 69ec03b
src/goto-programs/write_goto_binary.cpp
@@ -123,7 +123,8 @@ static void write_goto_functions_binary(
123
// Since version 2, goto functions are not converted to ireps,
124
// instead they are saved in a custom binary format
125
126
- write_gb_string(out, id2string(fct.first)); // name
+ const auto function_name = id2string(fct.first);
127
+ write_gb_string(out, function_name);
128
write_instructions_binary(out, irepconverter, fct);
129
}
130
0 commit comments