diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-09-12 18:17:46 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-09-12 18:17:46 +0000 |
commit | c3517ebb48a51e146badc08bc3684520c41da6c8 (patch) | |
tree | 7922c8cf9e960b470f3f9b7bc60e437a134f599f /lib/Analysis/BugReporter.cpp | |
parent | 71441f0e8a1e9f799ad3aff2a07c2a2229a3ced8 (diff) |
Add missing spaces in path diagnostics.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BugReporter.cpp')
-rw-r--r-- | lib/Analysis/BugReporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp index b9a0d406a9..7e3db7aba4 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/lib/Analysis/BugReporter.cpp @@ -550,7 +550,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD, } } else { - os << "'Default' branch taken."; + os << "'Default' branch taken. "; ExecutionContinues(os, SMgr, LastNode); } @@ -587,7 +587,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD, std::ostringstream os; - os << "Loop condition is true."; + os << "Loop condition is true. "; ExecutionContinues(os, SMgr, Dst); PD.push_front(new PathDiagnosticPiece(L, os.str())); @@ -606,7 +606,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD, std::ostringstream os; - os << "Loop condition is false."; + os << "Loop condition is false. "; ExecutionContinues(os, SMgr, Dst); PD.push_front(new PathDiagnosticPiece(L, os.str())); |