From: Davide Italiano Date: Tue, 31 Jan 2017 21:26:18 +0000 (+0000) Subject: [Support] Add newline when dumping an APInt. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e61910503389bd1e219fcbda3ff6e23a8b460d0;p=llvm [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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293691 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 3c742303936..0cbb93b0ca3 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -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