diff options
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 878a70ba..6d4df12e 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -222,6 +222,7 @@ public: static ref<Expr> createCoerceToPointerType(ref<Expr> e); static ref<Expr> createNot(ref<Expr> e); static ref<Expr> createImplies(ref<Expr> hyp, ref<Expr> conc); + static ref<Expr> createIff(ref<Expr> e1, ref<Expr> e2); static ref<Expr> createIsZero(ref<Expr> e); /// Create a little endian read of the given type at offset 0 of the |