From: Chris Lattner Date: Tue, 15 Sep 2009 05:14:57 +0000 (+0000) Subject: add newline to debug dump X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ff1147072a0c9dbe91572bbbbf93031c6451bbae;p=oota-llvm.git add newline to debug dump git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81840 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index a7b033ffb9d..8f5fc37b44a 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/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 &WorkList) { - DEBUG(errs() << "Found inst to SROA: " << *AI); + DEBUG(errs() << "Found inst to SROA: " << *AI << '\n'); SmallVector ElementAllocas; if (const StructType *ST = dyn_cast(AI->getAllocatedType())) { ElementAllocas.reserve(ST->getNumContainedTypes());