r174255 - Fixed another whitespace issue... *sigh*.
Michael Gottesman
mgottesman at apple.com
Fri Feb 1 17:05:06 PST 2013
Author: mgottesman
Date: Fri Feb 1 19:05:06 2013
New Revision: 174255
URL: http://llvm.org/viewvc/llvm-project?rev=174255&view=rev
Log:
Fixed another whitespace issue... *sigh*.
Modified:
cfe/trunk/lib/CodeGen/CGObjC.cpp
Modified: cfe/trunk/lib/CodeGen/CGObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGObjC.cpp?rev=174255&r1=174254&r2=174255&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGObjC.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGObjC.cpp Fri Feb 1 19:05:06 2013
@@ -1706,9 +1706,9 @@ static llvm::Constant *createARCRuntimeF
llvm::Constant *fn = CGM.CreateRuntimeFunction(type, fnName);
if (llvm::Function *f = dyn_cast<llvm::Function>(fn)) {
- // If the target runtime doesn't naturally support ARC, emit weak
- // references to the runtime support library. We don't really
- // permit this to fail, but we need a particular relocation style.
+ // If the target runtime doesn't naturally support ARC, emit weak
+ // references to the runtime support library. We don't really
+ // permit this to fail, but we need a particular relocation style.
if (!CGM.getLangOpts().ObjCRuntime.hasNativeARC()) {
f->setLinkage(llvm::Function::ExternalWeakLinkage);
} else if (fnName == "objc_retain" || fnName == "objc_release") {
More information about the cfe-commits
mailing list