diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-15 00:52:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-15 00:52:24 +0000 |
commit | 1e3d28e825f936060833c09883f93990586a992a (patch) | |
tree | a3207fd90a2cd0271bfd2c20b63333dc7396d1bf /include | |
parent | 427f2cb75e769fd6552ff7054369ca5959ddcaf0 (diff) | |
download | klee-1e3d28e825f936060833c09883f93990586a992a.tar.gz |
Support partial folding for Add in new constant folding builder.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 79a8ec6f..24a1cb2e 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -411,7 +411,6 @@ 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); @@ -422,6 +421,9 @@ public: ref<ConstantExpr> Sle(const ref<ConstantExpr> &RHS); ref<ConstantExpr> Sgt(const ref<ConstantExpr> &RHS); ref<ConstantExpr> Sge(const ref<ConstantExpr> &RHS); + + ref<ConstantExpr> Neg(); + ref<ConstantExpr> Not(); }; |