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
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);
}