[Support] Add newline when dumping an APInt.

This annoyed me a few times but was lazy so I haven't fixed it
until today, when the output of my debugger was too confusing.

llvm-svn: 293691
This commit is contained in:
Davide Italiano 2017-01-31 21:26:18 +00:00
parent c4f9920bd4
commit 5a473d230d
1 changed files with 1 additions and 1 deletions

View File

@ -2247,7 +2247,7 @@ LLVM_DUMP_METHOD void APInt::dump() const {
this->toStringUnsigned(U);
this->toStringSigned(S);
dbgs() << "APInt(" << BitWidth << "b, "
<< U << "u " << S << "s)";
<< U << "u " << S << "s)\n";
}
#endif