diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-27 18:57:22 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-03-27 18:57:22 +0000 |
commit | cff2b8c9d447503bcff40e4eb0f1d69bead89206 (patch) | |
tree | e15eb81667eb7290af552a1ebcea6c964757529b /lib/Core | |
parent | c86988637c411a80556e26e07037dc6dcfade4d3 (diff) | |
download | klee-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
Diffstat (limited to 'lib/Core')
-rw-r--r-- | lib/Core/Executor.cpp | 2 |
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) |