diff options
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(); }; |