summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMISelLowering.cpp
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-08-12 03:24:59 +0000
committerJustin Bogner <mail@justinbogner.com>2014-08-12 03:24:59 +0000
commitc0087f36114774899c26aa677aa5fe02027c22f0 (patch)
treeaf40c117c83c8dba204fc5d11c697f06b6c50750 /llvm/lib/Target/ARM/ARMISelLowering.cpp
parent6617777fa7db67a71e71a1382bba5cbc3c51201c (diff)
downloadbcm5719-llvm-c0087f36114774899c26aa677aa5fe02027c22f0.tar.gz
bcm5719-llvm-c0087f36114774899c26aa677aa5fe02027c22f0.zip
IR: Print a newline when dumping Types
Type::dump() doesn't print a newline, which makes for a poor experience in a debugger. This looks like it was an ommission considering Value::dump() two lines above, so I've changed Type to add a newline as well. Of the two in-tree callers, one added a newline anyway, and I've updated the other one to use Type::print instead. llvm-svn: 215421
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index a47d05ebe81..ced7d84162b 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -10981,6 +10981,6 @@ bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
HABaseType Base = HA_UNKNOWN;
uint64_t Members = 0;
bool result = isHomogeneousAggregate(Ty, Base, Members);
- DEBUG(dbgs() << "isHA: " << result << " "; Ty->dump(); dbgs() << "\n");
+ DEBUG(dbgs() << "isHA: " << result << " "; Ty->dump());
return result;
}
OpenPOWER on IntegriCloud