about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-03-11 14:08:47 +0000
committerMartinNowack <martin.nowack@gmail.com>2019-03-13 10:25:33 +0000
commit833de7329bc821aacf0ff63b053ae64f12f4bb12 (patch)
tree4863e2fccd5a21452d895364eb7e6a7aa156409f /include
parent92fd446f72136594e6519065fbd5bca3e0aee8e3 (diff)
downloadklee-833de7329bc821aacf0ff63b053ae64f12f4bb12.tar.gz
Documented options in ExprPPrinter.cpp and placed them into a new option category for building and printing expressions
Diffstat (limited to 'include')
-rw-r--r--include/klee/Expr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h
index 212053b4..cdc8474a 100644
--- a/include/klee/Expr.h
+++ b/include/klee/Expr.h
@@ -13,10 +13,11 @@
 #include "klee/util/Bits.h"
 #include "klee/util/Ref.h"
 
-#include "llvm/ADT/APInt.h"
 #include "llvm/ADT/APFloat.h"
+#include "llvm/ADT/APInt.h"
 #include "llvm/ADT/DenseSet.h"
 #include "llvm/ADT/SmallVector.h"
+#include "llvm/Support/CommandLine.h"
 #include "llvm/Support/raw_ostream.h"
 
 #include <sstream>
@@ -38,6 +39,7 @@ class ObjectState;
 
 template<class T> class ref;
 
+extern llvm::cl::OptionCategory ExprCat;
 
 /// Class representing symbolic expressions.
 /**