about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2013-03-27 18:57:22 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2013-03-27 18:57:22 +0000
commitcff2b8c9d447503bcff40e4eb0f1d69bead89206 (patch)
treee15eb81667eb7290af552a1ebcea6c964757529b
parentc86988637c411a80556e26e07037dc6dcfade4d3 (diff)
downloadklee-cff2b8c9d447503bcff40e4eb0f1d69bead89206.tar.gz
Patch by Jonathan Neuschäfer adding a missing newline.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@178168 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Core/Executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp
index fa5835d3..473f45e5 100644
--- a/lib/Core/Executor.cpp
+++ b/lib/Core/Executor.cpp
@@ -1071,7 +1071,7 @@ void Executor::stepInstruction(ExecutionState &state) {
   if (DebugPrintInstructions) {
     printFileLine(state, state.pc);
     std::cerr << std::setw(10) << stats::instructions << " ";
-    llvm::errs() << *(state.pc->inst);
+    llvm::errs() << *(state.pc->inst) << '\n';
   }
 
   if (statsTracker)