forked from OSchip/llvm-project
[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:
parent
c4f9920bd4
commit
5a473d230d
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue