diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-12-19 07:18:12 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-12-19 07:18:12 +0000 |
| commit | 7967fc14b912d9e355570f1f9db8ccb7d7518d94 (patch) | |
| tree | 98b80fd825ad870c307c45f4dc0839998cb17f98 /clang/lib/CodeGen/CGObjC.cpp | |
| parent | c467933dc723c3fff94fd1464c3870dca512d999 (diff) | |
| download | bcm5719-llvm-7967fc14b912d9e355570f1f9db8ccb7d7518d94.tar.gz bcm5719-llvm-7967fc14b912d9e355570f1f9db8ccb7d7518d94.zip | |
Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future.
llvm-svn: 170500
Diffstat (limited to 'clang/lib/CodeGen/CGObjC.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGObjC.cpp b/clang/lib/CodeGen/CGObjC.cpp index b06bdc7ff4f..c003f9f3dbd 100644 --- a/clang/lib/CodeGen/CGObjC.cpp +++ b/clang/lib/CodeGen/CGObjC.cpp @@ -1713,7 +1713,7 @@ static llvm::Constant *createARCRuntimeFunction(CodeGenModule &CGM, f->setLinkage(llvm::Function::ExternalWeakLinkage); // set nonlazybind attribute for these APIs for performance. if (fnName == "objc_retain" || fnName == "objc_release") - f->addFnAttr(llvm::Attributes::NonLazyBind); + f->addFnAttr(llvm::Attribute::NonLazyBind); } return fn; |

