Tweak pretty-printing of constraints.

llvm-svn: 69740
This commit is contained in:
Ted Kremenek 2009-04-21 22:37:11 +00:00
parent b475a5ca95
commit 1a1b62c168
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ void RangeConstraintManager::print(const GRState* St, std::ostream& Out,
Out << nl << sep << "ranges of symbol values:";
for (ConstraintRangeTy::iterator I=Ranges.begin(), E=Ranges.end(); I!=E; ++I){
Out << nl << " $" << I.getKey() << " : ";
Out << nl << ' ' << I.getKey() << " : ";
I.getData().Print(Out);
}
}