Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
nunoplopes committed Jan 9, 2024
1 parent ebd2826 commit 90141d0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions ir/pointer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -805,10 +805,6 @@ Pointer Pointer::toLogical() const {
return mkIf(isLogical(), *this, *std::move(ret)());
}

Pointer Pointer::toLogicalIfNotPhy() const {
return isLogical().isFalse() ? *this : toLogical();
}

Pointer
Pointer::mkIf(const expr &cond, const Pointer &then, const Pointer &els) {
assert(&then.m == &els.m);
Expand Down
1 change: 0 additions & 1 deletion ir/pointer.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class Pointer {
const smt::expr &ret_type, bool src_name = false) const;

Pointer toLogical() const;
Pointer toLogicalIfNotPhy() const;

public:
Pointer(const Memory &m, const smt::expr &bid, const smt::expr &offset,
Expand Down

0 comments on commit 90141d0

Please sign in to comment.