diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-24 02:31:34 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-24 02:31:34 +0000 |
commit | 1242378931c01cdf97dd5fe374719465ef5f0bf4 (patch) | |
tree | 24428648144702c5e98884f8cfe559f62cb7a0ec /lib/SMT/main.cpp | |
parent | 11d1cbae8f642953c5d60faa9a02c9630930461b (diff) | |
download | klee-1242378931c01cdf97dd5fe374719465ef5f0bf4.tar.gz |
Added support for LET expressions. Added simple environment support
to SMTParser. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@74055 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/main.cpp')
-rw-r--r-- | lib/SMT/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/SMT/main.cpp b/lib/SMT/main.cpp index 4d2b8e0a..d5137782 100644 --- a/lib/SMT/main.cpp +++ b/lib/SMT/main.cpp @@ -13,4 +13,6 @@ int main(int argc, char** argv) { klee::expr::SMTParser smtParser(argv[1]); smtParser.Init(); + + cout << "Query: " << smtParser.query << "\n"; } |