Skip to content

Symex Documentation #4099

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 4 commits into from
Mar 2, 2019
Merged
Show file tree
Hide file tree
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
8 changes: 2 additions & 6 deletions src/goto-symex/auto_objects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ exprt goto_symext::make_auto_object(const typet &type, statet &state)
return symbol_exprt(symbol.name, symbol.type);
}

void goto_symext::initialize_auto_object(
const exprt &expr,
statet &state)
void goto_symext::initialize_auto_object(const exprt &expr, statet &state)
{
const typet &type=ns.follow(expr.type());

Expand Down Expand Up @@ -77,9 +75,7 @@ void goto_symext::initialize_auto_object(
}
}

void goto_symext::trigger_auto_object(
const exprt &expr,
statet &state)
void goto_symext::trigger_auto_object(const exprt &expr, statet &state)
{
if(expr.id()==ID_symbol &&
expr.get_bool(ID_C_SSA_symbol))
Expand Down
Loading