diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-09 07:57:12 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-09 07:57:12 +0000 |
commit | 53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3 (patch) | |
tree | b3f544871b831669fbf9f6ae4399cee2bee4c896 /lib/SMT/smtlib.y | |
parent | 7ef508afbc4651362f05e0989f7a1700f50a5f22 (diff) | |
download | klee-53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3.tar.gz |
Made expression nodes int the SMT parser be pointers to ExprHandle.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/smtlib.y')
-rw-r--r-- | lib/SMT/smtlib.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SMT/smtlib.y b/lib/SMT/smtlib.y index 10ed3c89..be1c5143 100644 --- a/lib/SMT/smtlib.y +++ b/lib/SMT/smtlib.y @@ -76,7 +76,7 @@ int smtliberror(const char *s) %union { std::string *str; std::vector<std::string> *strvec; - Expr node; + klee::expr::ExprHandle* node; std::vector<void*> *vec; }; |