summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGObjC.cpp
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-02-02 01:05:06 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-02-02 01:05:06 +0000
commitbe9614c755a1a2b1b4db323709eb756a076f1e48 (patch)
tree18568d374523f7d8f76c8e5b06f8e24d2ceae97b /clang/lib/CodeGen/CGObjC.cpp
parentb46072d7ac1a9e6fe30941ba9f2295fa4ede1ecc (diff)
downloadbcm5719-llvm-be9614c755a1a2b1b4db323709eb756a076f1e48.tar.gz
bcm5719-llvm-be9614c755a1a2b1b4db323709eb756a076f1e48.zip
Fixed another whitespace issue... *sigh*.
llvm-svn: 174255
Diffstat (limited to 'clang/lib/CodeGen/CGObjC.cpp')
-rw-r--r--clang/lib/CodeGen/CGObjC.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGObjC.cpp b/clang/lib/CodeGen/CGObjC.cpp
index 58cf201b3cc..4583367bb96 100644
--- a/clang/lib/CodeGen/CGObjC.cpp
+++ b/clang/lib/CodeGen/CGObjC.cpp
@@ -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") {
OpenPOWER on IntegriCloud