Skip to content

preserve hidden flag for functions #1456

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 12, 2017
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