diff options
author | Frank Busse <bb0xfb@gmail.com> | 2021-12-21 13:59:30 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-01-05 22:36:54 +0000 |
commit | 27cfe79c1867ece6edf0c4a4bfcbdecf01020774 (patch) | |
tree | 08b204208a9b29efd114ae8d4d201519d5180869 /lib/Core/PTree.h | |
parent | 62e27ff8cad97c12f3051a5fdcf8cd4aade96894 (diff) | |
download | klee-27cfe79c1867ece6edf0c4a4bfcbdecf01020774.tar.gz |
introduce BranchTypes
Diffstat (limited to 'lib/Core/PTree.h')
-rw-r--r-- | lib/Core/PTree.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Core/PTree.h b/lib/Core/PTree.h index 3d87611d..dbee70dd 100644 --- a/lib/Core/PTree.h +++ b/lib/Core/PTree.h @@ -10,6 +10,7 @@ #ifndef KLEE_PTREE_H #define KLEE_PTREE_H +#include "klee/Core/BranchTypes.h" #include "klee/Expr/Expr.h" #include "klee/Support/ErrorHandling.h" #include "llvm/ADT/PointerIntPair.h" @@ -48,7 +49,7 @@ namespace klee { ~PTree() = default; void attach(PTreeNode *node, ExecutionState *leftState, - ExecutionState *rightState); + ExecutionState *rightState, BranchType reason); void remove(PTreeNode *node); void dump(llvm::raw_ostream &os); std::uint8_t getNextId() { |