Skip to content
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
2 changes: 1 addition & 1 deletion src/analyses/local_bitvector_analysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ local_bitvector_analysist::flagst local_bitvector_analysist::get_rec(
return flagst::mk_unknown();
}

void local_bitvector_analysist::build(const goto_functiont &goto_function)
void local_bitvector_analysist::build()
{
if(cfg.nodes.empty())
return;
Expand Down
4 changes: 2 additions & 2 deletions src/analyses/local_bitvector_analysis.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class local_bitvector_analysist
locals(_goto_function),
cfg(_goto_function.body)
{
build(_goto_function);
build();
}

void output(
Expand Down Expand Up @@ -176,7 +176,7 @@ class local_bitvector_analysist
const exprt &src);

protected:
void build(const goto_functiont &goto_function);
void build();

typedef std::stack<unsigned> work_queuet;

Expand Down