We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26781a6 commit 1f62596Copy full SHA for 1f62596
src/analyses/flow_insensitive_analysis.cpp
@@ -40,18 +40,13 @@ exprt flow_insensitive_abstract_domain_baset::get_guard(
40
exprt flow_insensitive_abstract_domain_baset::get_return_lhs(locationt to) const
41
{
42
// get predecessor of "to"
43
-
44
to--;
45
46
if(to->is_end_function())
47
return static_cast<const exprt &>(get_nil_irep());
48
49
// must be the function call
50
- assert(to->is_function_call());
51
52
- const code_function_callt &code = to_code_function_call(to->code);
53
54
- return code.lhs();
+ return to_code_function_call(to->code).lhs();
55
}
56
57
void flow_insensitive_analysis_baset::operator()(
0 commit comments