From 5a473d230d047111706f6a550004a0600c7e4e32 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. llvm-svn: 293691 --- llvm/lib/Support/APInt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 3c742303936a..0cbb93b0ca3b 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/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