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
5 changes: 3 additions & 2 deletions src/goto-programs/goto_convert_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,14 @@ void goto_convert_functionst::convert_function(const irep_idt &identifier)
const symbolt &symbol=ns.lookup(identifier);
goto_functionst::goto_functiont &f=functions.function_map[identifier];

if(f.body_available())
return; // already converted

// make tmp variables local to function
tmp_symbol_prefix=id2string(symbol.name)+"::$tmp::";
temporary_counter=0;

f.type=to_code_type(symbol.type);
if(f.body_available())
return; // already converted

if(symbol.value.is_nil() ||
symbol.value.id()=="compiled") /* goto_inline may have removed the body */
Expand Down