diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-07-02 04:16:47 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-07-02 04:16:47 +0000 |
commit | ef6e35242fefee2a3bbbd3c247a3b2291b5965d4 (patch) | |
tree | 6f28b63b584b9180d8db7976c3e927d460e54e59 /lib/SMT/SMTParser.h | |
parent | 4b0f5a08432dfd77d87b90bf5faf3637b629663c (diff) | |
download | klee-ef6e35242fefee2a3bbbd3c247a3b2291b5965d4.tar.gz |
Added support for bitvector constants to the SMTLIB parser. Only
variable and array support left. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@74690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/SMTParser.h')
-rw-r--r-- | lib/SMT/SMTParser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/SMT/SMTParser.h b/lib/SMT/SMTParser.h index 780100b0..1e24122f 100644 --- a/lib/SMT/SMTParser.h +++ b/lib/SMT/SMTParser.h @@ -56,6 +56,7 @@ class SMTParser : public klee::expr::Parser { int Error(const std::string& s); int StringToInt(const std::string& s); + ExprHandle GetConstExpr(std::string val, uint8_t base, klee::Expr::Width w); typedef std::map<const std::string, ExprHandle> VarEnv; |