about summary refs log tree commit diff homepage
path: root/lib/SMT/parser_temp.h
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2009-06-09 07:57:12 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2009-06-09 07:57:12 +0000
commit53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3 (patch)
treeb3f544871b831669fbf9f6ae4399cee2bee4c896 /lib/SMT/parser_temp.h
parent7ef508afbc4651362f05e0989f7a1700f50a5f22 (diff)
downloadklee-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/parser_temp.h')
-rw-r--r--lib/SMT/parser_temp.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/SMT/parser_temp.h b/lib/SMT/parser_temp.h
index d6ad91a2..afd8af21 100644
--- a/lib/SMT/parser_temp.h
+++ b/lib/SMT/parser_temp.h
@@ -23,8 +23,7 @@
 #ifndef _cvc3__parser_temp_h_
 #define _cvc3__parser_temp_h_
 
-//#include "expr.h"
-#define Expr void*
+#include "expr/Parser.h"
 
 #include <sstream>
 #include <vector>
@@ -48,7 +47,7 @@ namespace CVC3 {
     // File name
     std::string fileName;
     // The last parsed Expr
-    Expr expr;
+    klee::expr::ExprHandle* expr;
     // Whether we are done or not
     bool done;
     // Whether we are running interactive