aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-01-06 22:56:54 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-01-06 22:56:54 +0000
commit795612702ec46412414b923a33e71fd3a080e826 (patch)
treed6930cfa0b8dc7f0355ad73ac2587d4fb23eb5b6 /lib
parent20d9fff206ebb21d08f61783462ca56d5efe0af9 (diff)
[ObjCARC Debug Messages] - Added missing newline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/ObjCARC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/ObjCARC.cpp b/lib/Transforms/Scalar/ObjCARC.cpp
index 3a4e78ba2e..d4e151c02e 100644
--- a/lib/Transforms/Scalar/ObjCARC.cpp
+++ b/lib/Transforms/Scalar/ObjCARC.cpp
@@ -2429,7 +2429,7 @@ void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
DEBUG(dbgs() << "ObjCARCOpt::OptimizeIndividualCalls: Replacing "
"objc_autorelease(x) with objc_release(x) since x is "
"otherwise unused.\n"
- " Old: " << *Call
+ " Old: " << *Call <<
"\n New: " <<
*NewCall << "\n");