diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 11:21:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 11:21:23 +0000 |
commit | 5cf74aa0b5f3d6fc3f997827b161f80f563be255 (patch) | |
tree | 9971cf407298e2a4547f8de55ec035b3ffc8c78d /tools | |
parent | 750435aa834e4f22da317c6f11be6636507ac29e (diff) | |
download | klee-5cf74aa0b5f3d6fc3f997827b161f80f563be255.tar.gz |
Make sure final KLEE output gets on a new line.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 0b4c0d3a..de20f6d3 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -1418,6 +1418,7 @@ int main(int argc, char **argv, char **envp) { << "KLEE: done: query cex = " << queryCounterexamples << "\n"; std::stringstream stats; + stats << "\n"; stats << "KLEE: done: total instructions = " << instructions << "\n"; stats << "KLEE: done: completed paths = " |