diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-13 02:56:57 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-13 02:56:57 +0000 |
commit | e3f1ff6980e920d64134a92971f342fabe89f5bf (patch) | |
tree | 4319ee69e19da342d3f23bbdd809a4e794456a35 /include | |
parent | 723545c647d93082444f5b49e132c6c9b406babf (diff) | |
download | klee-e3f1ff6980e920d64134a92971f342fabe89f5bf.tar.gz |
Added a helper function to construct IFF expressions.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73283 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 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 |