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/CGClass.cpp | |
parent | c467933dc723c3fff94fd1464c3870dca512d999 (diff) | |
download | llvm-7967fc14b912d9e355570f1f9db8ccb7d7518d94.zip llvm-7967fc14b912d9e355570f1f9db8ccb7d7518d94.tar.gz llvm-7967fc14b912d9e355570f1f9db8ccb7d7518d94.tar.bz2 |
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/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 5d93a8b..4e0fe9a 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -946,7 +946,7 @@ void CodeGenFunction::EmitDestructorBody(FunctionArgList &Args) { // -fapple-kext must inline any call to this dtor into // the caller's body. if (getLangOpts().AppleKext) - CurFn->addFnAttr(llvm::Attributes::AlwaysInline); + CurFn->addFnAttr(llvm::Attribute::AlwaysInline); break; } |