From: Serge Pavlov Date: Sat, 18 Feb 2017 06:04:15 +0000 (+0000) Subject: Process attributes 'ifunc' and 'alias' when checking for redefinition X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b7608a93efca9e8a3ea17f02e13b9acbaa3ce86;p=clang Process attributes 'ifunc' and 'alias' when checking for redefinition These attributes effectively turn a non-defining declaration into a definition, so the case when the declaration already has a body must be diagnosed properly. Differential Revision: https://reviews.llvm.org/D30032 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@295541 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index e96860a294..54d8c27af3 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -11786,6 +11786,18 @@ Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, else FD = cast(D); + // Check for defining attributes before the check for redefinition. + if (const auto *Attr = FD->getAttr()) { + Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0; + FD->dropAttr(); + FD->setInvalidDecl(); + } + if (const auto *Attr = FD->getAttr()) { + Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1; + FD->dropAttr(); + FD->setInvalidDecl(); + } + // See if this is a redefinition. if (!FD->isLateTemplateParsed()) { CheckForFunctionRedefinition(FD, nullptr, SkipBody); diff --git a/test/Sema/alias-redefinition.c b/test/Sema/alias-redefinition.c index 91f4b2714c..a4c06eebf4 100644 --- a/test/Sema/alias-redefinition.c +++ b/test/Sema/alias-redefinition.c @@ -19,9 +19,8 @@ void f4() {} void fun4(void) __attribute((alias("f4"))); void fun4(void); -// FIXME: We should produce a special case error for this. void f5() {} -void __attribute((alias("f5"))) fun5(void) {} // expected-error {{redefinition of 'fun5'}} // expected-note {{previous definition}} +void __attribute((alias("f5"))) fun5(void) {} // expected-error {{definition 'fun5' cannot also be an alias}} int var1 __attribute((alias("v1"))); // expected-error {{definition 'var1' cannot also be an alias}} static int var2 __attribute((alias("v2"))) = 2; // expected-error {{definition 'var2' cannot also be an alias}} diff --git a/test/Sema/attr-ifunc.c b/test/Sema/attr-ifunc.c index d177b71684..8f9c22f849 100644 --- a/test/Sema/attr-ifunc.c +++ b/test/Sema/attr-ifunc.c @@ -39,5 +39,9 @@ void f1() __attribute__((ifunc("f1_ifunc"))); //expected-error@-1 {{definition with same mangled name as another definition}} void* f1_ifunc() { return 0; } +void* f6_ifunc(int i); +void __attribute__((ifunc("f6_ifunc"))) f6() {} +//expected-error@-1 {{definition 'f6' cannot also be an ifunc}} + #endif #endif