about summary refs log tree commit diff homepage
path: root/lib/SMT/smtlib.y
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2009-06-10 09:15:33 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2009-06-10 09:15:33 +0000
commit7ba75c1726a81d343e54bc718742541b9d884a13 (patch)
tree38627286534fd13a66b705341f215e80511e33e2 /lib/SMT/smtlib.y
parent930bf13e988c169c585da158c4410bdb49cc5ec6 (diff)
downloadklee-7ba75c1726a81d343e54bc718742541b9d884a13.tar.gz
Updated the SMT test driver. Other small changes to parser_temp.h and
smtlib.y.



git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73167 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/smtlib.y')
-rw-r--r--lib/SMT/smtlib.y6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/SMT/smtlib.y b/lib/SMT/smtlib.y
index 72185a93..40413345 100644
--- a/lib/SMT/smtlib.y
+++ b/lib/SMT/smtlib.y
@@ -24,6 +24,7 @@
 */
 
 #include "parser_temp.h"
+#include "SMTParser.h"
 #include "klee/Expr.h"
 
 using namespace klee;
@@ -40,7 +41,6 @@ namespace CVC3 {
 #define ARRAYSENABLED (CVC3::parserTemp->arrFlag)
 #define BVENABLED (CVC3::parserTemp->bvFlag)
 #define BVSIZE (CVC3::parserTemp->bvSize)
-#define RAT(args) CVC3::newRational args
 #define QUERYPARSED CVC3::parserTemp->queryParsed
 
 // Suppress the bogus warning suppression in bison (it generates
@@ -159,10 +159,6 @@ int smtliberror(const char *s)
 cmd:
     benchmark
     {
-      /*
-      EXPR = *$1;
-      delete $1;
-      */
       EXPR = $1;
       YYACCEPT;
     }