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 | ef2b3a71bbbe764ae8ea16f6b36e234e3d8dc1f6 (patch) | |
tree | 1354d609c8e1e60a26bd96ad8529f8d0d82515fe /clang/lib/Analysis/BugReporter.cpp | |
parent | 3c12fc4342291ee5b3d05c69a0c96c671bbb86f3 (diff) | |
download | bcm5719-llvm-ef2b3a71bbbe764ae8ea16f6b36e234e3d8dc1f6.tar.gz bcm5719-llvm-ef2b3a71bbbe764ae8ea16f6b36e234e3d8dc1f6.zip |
Add missing spaces in path diagnostics.
llvm-svn: 56166
Diffstat (limited to 'clang/lib/Analysis/BugReporter.cpp')
-rw-r--r-- | clang/lib/Analysis/BugReporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp index b9a0d406a97..7e3db7aba45 100644 --- a/clang/lib/Analysis/BugReporter.cpp +++ b/clang/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())); |