diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-25 07:13:24 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-25 07:13:24 +0000 |
commit | 553e2871ba937a91da303190631daf627f83eabb (patch) | |
tree | d331502b53465cb3f4f6aa36e62cab97fe7923e1 /lib/SMT/SMTParser.h | |
parent | 0da7412d643890e299cc83d8f09b8b90d0ae94bd (diff) | |
download | klee-553e2871ba937a91da303190631daf627f83eabb.tar.gz |
Recognizing more SMTLIB expressions (bitwise, etc.). Some of them
still need to actually be constructed. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@74169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/SMTParser.h')
-rw-r--r-- | lib/SMT/SMTParser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/SMT/SMTParser.h b/lib/SMT/SMTParser.h index ea5c34e5..780100b0 100644 --- a/lib/SMT/SMTParser.h +++ b/lib/SMT/SMTParser.h @@ -54,6 +54,8 @@ class SMTParser : public klee::expr::Parser { void Init(void); int Error(const std::string& s); + + int StringToInt(const std::string& s); typedef std::map<const std::string, ExprHandle> VarEnv; @@ -61,7 +63,6 @@ class SMTParser : public klee::expr::Parser { std::stack<VarEnv> varEnvs; std::stack<FVarEnv> fvarEnvs; - void PushVarEnv(void); void PopVarEnv(void); |