diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 04:52:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 04:52:10 +0000 |
commit | d15a30cc0ce2579747ae4c2e919af54c6b06af70 (patch) | |
tree | e25631888e0f5dcebf9f0c657ca8b1d8f42cf244 /include | |
parent | 380ca8863db645f0c00843af2fef575b655783ff (diff) | |
download | klee-d15a30cc0ce2579747ae4c2e919af54c6b06af70.tar.gz |
Rewrite ImpliedValue to use ConstantExpr operations.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 9851d122..70d9abfc 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -395,6 +395,7 @@ public: ref<ConstantExpr> Shl(const ref<ConstantExpr> &RHS); ref<ConstantExpr> LShr(const ref<ConstantExpr> &RHS); ref<ConstantExpr> AShr(const ref<ConstantExpr> &RHS); + ref<ConstantExpr> Not(); ref<ConstantExpr> Eq(const ref<ConstantExpr> &RHS); ref<ConstantExpr> Ne(const ref<ConstantExpr> &RHS); ref<ConstantExpr> Ult(const ref<ConstantExpr> &RHS); |