diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-15 05:14:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-15 05:14:57 +0000 |
commit | e9a499239954f5a087c83443bc12373f34ab312b (patch) | |
tree | f2c2f917e17f689fc5d84dbaf954b57a2ea192e1 /llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp | |
parent | d3bc31f04f20efbe6b58fa19f62be878e66a8ac4 (diff) | |
download | bcm5719-llvm-e9a499239954f5a087c83443bc12373f34ab312b.tar.gz bcm5719-llvm-e9a499239954f5a087c83443bc12373f34ab312b.zip |
add newline to debug dump
llvm-svn: 81840
Diffstat (limited to 'llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp | 2 |
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()); |