Skip to content

Commit 5b604ae

Browse files
author
martin
committed
Update the mock domain with the new ai_domain_baset interface.
1 parent f9ca353 commit 5b604ae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

unit/analyses/ai/ai_simplify_lhs.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@ class constant_simplification_mockt:public ai_domain_baset
3333
{}
3434
void make_entry() override
3535
{}
36+
bool is_bottom() const override
37+
{
38+
UNREACHABLE;
39+
return true;
40+
}
41+
bool is_top() const override
42+
{
43+
UNREACHABLE;
44+
return true;
45+
}
3646

3747
bool ai_simplify(exprt &condition, const namespacet &ns) const override;
3848
};

0 commit comments

Comments
 (0)