summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-09-26 18:06:08 +0000
committerTed Kremenek <kremenek@apple.com>2012-09-26 18:06:08 +0000
commit8971b028e705e76becd898ea6a8d054a104cc531 (patch)
tree59b06f0d45ba654692e75591fed710c96706a0e1 /clang/lib
parentf39c0c2487d518037e9b4b1cd3b913b2f9ec098e (diff)
downloadbcm5719-llvm-8971b028e705e76becd898ea6a8d054a104cc531.tar.gz
bcm5719-llvm-8971b028e705e76becd898ea6a8d054a104cc531.zip
Revert "Use sep instead of ' '."
This isn't correct, as Jordan correctly points out. llvm-svn: 164711
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp b/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
index d5b9c65256b..5da4fa47dae 100644
--- a/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
+++ b/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
@@ -566,7 +566,7 @@ void RangeConstraintManager::print(ProgramStateRef St, raw_ostream &Out,
Out << nl << sep << "Ranges of symbol values:";
for (ConstraintRangeTy::iterator I=Ranges.begin(), E=Ranges.end(); I!=E; ++I){
- Out << nl << sep << I.getKey() << " : ";
+ Out << nl << ' ' << I.getKey() << " : ";
I.getData().print(Out);
}
Out << nl;
OpenPOWER on IntegriCloud