]> granicus.if.org Git - clang/commitdiff
Fixed another whitespace issue... *sigh*.
authorMichael Gottesman <mgottesman@apple.com>
Sat, 2 Feb 2013 01:05:06 +0000 (01:05 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Sat, 2 Feb 2013 01:05:06 +0000 (01:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174255 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGObjC.cpp

index 58cf201b3cc5a4daea92eeb986117ec81cbe2983..4583367bb96750b0584c72ff0e8c09f9c59ff32c 100644 (file)
@@ -1706,9 +1706,9 @@ static llvm::Constant *createARCRuntimeFunction(CodeGenModule &CGM,
   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") {