Skip to content

Remove unused parameter from list_calls_and_arguments #2440

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
Jul 7, 2018
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
3 changes: 1 addition & 2 deletions src/goto-instrument/call_sequences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ void check_call_sequence(const goto_modelt &goto_model)

static void list_calls_and_arguments(
const namespacet &ns,
const irep_idt &function,
const goto_programt &goto_program)
{
forall_goto_program_instructions(i_it, goto_program)
Expand Down Expand Up @@ -321,5 +320,5 @@ void list_calls_and_arguments(const goto_modelt &goto_model)
const namespacet ns(goto_model.symbol_table);

forall_goto_functions(f_it, goto_model.goto_functions)
list_calls_and_arguments(ns, f_it->first, f_it->second.body);
list_calls_and_arguments(ns, f_it->second.body);
}