Add support for deprecated members of RecordDecls (e.g. struct fields).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-02-16 17:07:21 +00:00
Родитель 005f6b222d
Коммит cfdff38e8e
3 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -462,8 +462,6 @@ static void InitializePredefinedMacros(Preprocessor &PP,
// Initialize language-specific preprocessor defines.
// FIXME: Implement magic like cpp_init_builtins for things like __STDC__
// and __DATE__ etc.
// These should all be defined in the preprocessor according to the
// current language configuration.
if (!PP.getLangOptions().Microsoft)

Просмотреть файл

@ -1593,6 +1593,9 @@ Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
if (MemberDecl->isInvalidDecl())
return ExprError();
// Check if referencing a field with __attribute__((deprecated)).
DiagnoseUseOfDeprecatedDecl(MemberDecl, MemberLoc);
if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
// We may have found a field within an anonymous union or struct
// (C++ [class.union]).

Просмотреть файл

@ -32,3 +32,11 @@ int old_fn() {
return old_fn()+1; // no warning, deprecated functions can use deprecated symbols.
}
struct foo {
int x __attribute__((deprecated));
};
void test1(struct foo *F) {
++F->x; // expected-warning {{'x' is deprecated}}
}