From 1e61910503389bd1e219fcbda3ff6e23a8b460d0 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Tue, 31 Jan 2017 21:26:18 +0000 Subject: [PATCH] [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 --- lib/Support/APInt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1