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 | 5957ef5d5226035be8d48b37260bcef1b171a288 (patch) | |
tree | 18475b901fb46cb9802ce9d53f9cfa49f537b2e0 /lib/Transforms/Scalar/ScalarReplAggregates.cpp | |
parent | a6001e21c43647daff2d81359cb3e9e8c0f0843e (diff) | |
download | external_llvm-5957ef5d5226035be8d48b37260bcef1b171a288.zip external_llvm-5957ef5d5226035be8d48b37260bcef1b171a288.tar.gz external_llvm-5957ef5d5226035be8d48b37260bcef1b171a288.tar.bz2 |
add newline to debug dump
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/ScalarReplAggregates.cpp')
-rw-r--r-- | lib/Transforms/Scalar/ScalarReplAggregates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index a7b033f..8f5fc37 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<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()); |