diff options
| author | Davide Italiano <davide@freebsd.org> | 2017-01-31 21:26:18 +0000 |
|---|---|---|
| committer | Davide Italiano <davide@freebsd.org> | 2017-01-31 21:26:18 +0000 |
| commit | 5a473d230d047111706f6a550004a0600c7e4e32 (patch) | |
| tree | 8abaa083be3d02c3f07543dbe5182f16e80d0af2 /llvm/lib/Support | |
| parent | c4f9920bd4c03f5365d43b91f7b27f93c434b890 (diff) | |
| download | bcm5719-llvm-5a473d230d047111706f6a550004a0600c7e4e32.tar.gz bcm5719-llvm-5a473d230d047111706f6a550004a0600c7e4e32.zip | |
[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
Diffstat (limited to 'llvm/lib/Support')
| -rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 3c742303936..0cbb93b0ca3 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 |

