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
5 changes: 0 additions & 5 deletions src/util/expr_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ exprt make_binary(const exprt &expr)
return previous;
}

with_exprt make_with_expr(const update_exprt &src)
{
return src.make_with_expr();
}

exprt is_not_zero(
const exprt &src,
const namespacet &ns)
Expand Down
4 changes: 0 additions & 4 deletions src/util/expr_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ bool is_assignable(const exprt &);
/// splits an expression with >=3 operands into nested binary expressions
exprt make_binary(const exprt &);

/// converts an update expr into a (possibly nested) with expression
DEPRECATED(SINCE(2024, 9, 10, "use update_exprt::make_with_expr() instead"))
with_exprt make_with_expr(const update_exprt &);

/// converts a scalar/float expression to C/C++ Booleans
exprt is_not_zero(const exprt &, const namespacet &ns);

Expand Down
Loading