projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9554c61
)
add newline to debug dump
author
Chris Lattner
<sabre@nondot.org>
Tue, 15 Sep 2009 05:14:57 +0000
(
05:14
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 15 Sep 2009 05:14:57 +0000
(
05:14
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81840
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Scalar/ScalarReplAggregates.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Scalar/ScalarReplAggregates.cpp
b/lib/Transforms/Scalar/ScalarReplAggregates.cpp
index a7b033ffb9d556a482eb56efed50fdeae0d6f45d..8f5fc37b44ad5ed539cf50399a86545e39ad2e93 100644
(file)
--- 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());