diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-02-21 05:15:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-02-21 05:15:32 +0000 |
commit | 2fb89539f78cbb567253dbbb2fb1acb61583867c (patch) | |
tree | 4523b07277b61f821bedf7df75c6d682e04a9016 /clang/lib/Sema | |
parent | 1979007ca8cd11853d150699a138172eb16cd4e5 (diff) | |
download | bcm5719-llvm-2fb89539f78cbb567253dbbb2fb1acb61583867c.tar.gz bcm5719-llvm-2fb89539f78cbb567253dbbb2fb1acb61583867c.zip |
Clang really intends to reject attribute 'warn_unused_result' on Objective-C methods, but
instead it crashes on them. We might extend this attribute to work on methods, but for
now fix the crasher. Addresses <rdar://problem/7670939>.
llvm-svn: 96723
Diffstat (limited to 'clang/lib/Sema')
-rw-r--r-- | clang/lib/Sema/SemaDeclAttr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index ef82d53b5c7..8178a147513 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -754,7 +754,7 @@ static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) return; } - if (!isFunctionOrMethod(D)) { + if (!isFunction(D)) { S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) << Attr.getName() << 0 /*function*/; return; |