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_parser.cpp | |
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_parser.cpp')
-rw-r--r-- | lib/SMT/smtlib_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SMT/smtlib_parser.cpp b/lib/SMT/smtlib_parser.cpp index e7d0e1d6..c97a95ff 100644 --- a/lib/SMT/smtlib_parser.cpp +++ b/lib/SMT/smtlib_parser.cpp @@ -275,7 +275,7 @@ typedef union YYSTYPE { std::string *str; std::vector<std::string> *strvec; - Expr node; + klee::expr::ExprHandle* node; std::vector<void*> *vec; } /* Line 187 of yacc.c. */ |