diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-08 08:30:59 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-08 08:30:59 +0000 |
commit | ef0bc0aee68cf791544865525005d91c73791bf2 (patch) | |
tree | 16df415a7fb249c7972e43df00e17ae013f385f3 /lib/SMT/lang.h | |
parent | ff6e5265662f6756ac827a5a8faaeaf0db99c03d (diff) | |
download | klee-ef0bc0aee68cf791544865525005d91c73791bf2.tar.gz |
More changes needed to make the SMTLIB parser compile.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73063 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/lang.h')
-rw-r--r-- | lib/SMT/lang.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/SMT/lang.h b/lib/SMT/lang.h index c021e63a..d4683f96 100644 --- a/lib/SMT/lang.h +++ b/lib/SMT/lang.h @@ -22,7 +22,12 @@ #ifndef _cvc3__lang_h_ #define _cvc3__lang_h_ -#include "debug.h" +#include <assert.h> +#include <stdlib.h> + +//#include "debug.h" +#define FatalAssert(cond, msg) assert(#cond && msg) +#define DebugAssert(cond, msg) assert(#cond && msg) namespace CVC3 { |