summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-15 05:14:57 +0000
committerChris Lattner <sabre@nondot.org>2009-09-15 05:14:57 +0000
commite9a499239954f5a087c83443bc12373f34ab312b (patch)
treef2c2f917e17f689fc5d84dbaf954b57a2ea192e1 /llvm
parentd3bc31f04f20efbe6b58fa19f62be878e66a8ac4 (diff)
downloadbcm5719-llvm-e9a499239954f5a087c83443bc12373f34ab312b.tar.gz
bcm5719-llvm-e9a499239954f5a087c83443bc12373f34ab312b.zip
add newline to debug dump
llvm-svn: 81840
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
index a7b033ffb9d..8f5fc37b44a 100644
--- a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
+++ b/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
@@ -337,7 +337,7 @@ bool SROA::performScalarRepl(Function &F) {
/// predicate, do SROA now.
void SROA::DoScalarReplacement(AllocationInst *AI,
std::vector<AllocationInst*> &WorkList) {
- DEBUG(errs() << "Found inst to SROA: " << *AI);
+ DEBUG(errs() << "Found inst to SROA: " << *AI << '\n');
SmallVector<AllocaInst*, 32> ElementAllocas;
if (const StructType *ST = dyn_cast<StructType>(AI->getAllocatedType())) {
ElementAllocas.reserve(ST->getNumContainedTypes());
OpenPOWER on IntegriCloud