diff options
author | Reid Kleckner <rnk@google.com> | 2017-10-02 17:16:14 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-10-02 17:16:14 +0000 |
commit | a3fe27f6b574438a8cac72e819454b84c021bf34 (patch) | |
tree | 607345dbab37d15899c7968149b451a45c6a9d42 | |
parent | 6deb21252212271207704be29f65037c0f5bd2cf (diff) | |
download | bcm5719-llvm-a3fe27f6b574438a8cac72e819454b84c021bf34.tar.gz bcm5719-llvm-a3fe27f6b574438a8cac72e819454b84c021bf34.zip |
Revert "[Sema] Warn on attribute nothrow conflicting with language specifiers"
This reverts r314461.
It is warning on user code that uses END_COM_MAP(), which expands to
declare QueryInterface with conflicting exception specifers. I've spent
a while trying to understand why, but haven't been able to extract a
reduced test case. Let's revert and I'll keep trying.
llvm-svn: 314689
-rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 | ||||
-rw-r--r-- | clang/lib/Sema/SemaDeclAttr.cpp | 21 | ||||
-rw-r--r-- | clang/test/SemaCXX/warn-conflicting-nothrow-attr-exception-spec.cpp | 24 |
3 files changed, 1 insertions, 48 deletions
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 38f2a3bd655..3d20cab8d7d 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -1419,10 +1419,6 @@ def err_noexcept_needs_constant_expression : Error< "argument to noexcept specifier must be a constant expression">; def err_exception_spec_not_parsed : Error< "exception specification is not available until end of class definition">; -def warn_nothrow_attr_disagrees_with_exception_specification - : ExtWarn<"attribute 'nothrow' ignored due to conflicting exception " - "specification">, - InGroup<IgnoredAttributes>; // C++ access checking def err_class_redeclared_with_different_access : Error< diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index 2a13c9576c7..1f4be4405b5 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -1985,25 +1985,6 @@ static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &Attrs) { Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex())); } -static void handleNoThrowAttr(Sema &S, Decl *D, const AttributeList &Attrs) { - assert(isa<FunctionDecl>(D) && "attribute nothrow only valid on functions"); - - auto *FD = cast<FunctionDecl>(D); - const auto *FPT = FD->getType()->getAs<FunctionProtoType>(); - - if (FPT && FPT->hasExceptionSpec() && - FPT->getExceptionSpecType() != EST_BasicNoexcept) { - S.Diag(Attrs.getLoc(), - diag::warn_nothrow_attr_disagrees_with_exception_specification); - S.Diag(FD->getExceptionSpecSourceRange().getBegin(), - diag::note_previous_decl) - << "exception specification"; - } - - D->addAttr(::new (S.Context) NoThrowAttr( - Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex())); -} - static void handleNoCallerSavedRegsAttr(Sema &S, Decl *D, const AttributeList &Attr) { if (S.CheckNoCallerSavedRegsAttr(Attr)) @@ -6230,7 +6211,7 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, handleNoReturnAttr(S, D, Attr); break; case AttributeList::AT_NoThrow: - handleNoThrowAttr(S, D, Attr); + handleSimpleAttribute<NoThrowAttr>(S, D, Attr); break; case AttributeList::AT_CUDAShared: handleSharedAttr(S, D, Attr); diff --git a/clang/test/SemaCXX/warn-conflicting-nothrow-attr-exception-spec.cpp b/clang/test/SemaCXX/warn-conflicting-nothrow-attr-exception-spec.cpp deleted file mode 100644 index c927c4f9265..00000000000 --- a/clang/test/SemaCXX/warn-conflicting-nothrow-attr-exception-spec.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// RUN: %clang_cc1 %s -fcxx-exceptions -fsyntax-only -Wexceptions -verify -std=c++14 - -struct S { - //expected-warning@+2 {{attribute 'nothrow' ignored due to conflicting exception specification}} - //expected-note@+1 {{exception specification declared here}} - __attribute__((nothrow)) S() noexcept(true); - //expected-warning@+2 {{attribute 'nothrow' ignored due to conflicting exception specification}} - //expected-note@+1 {{exception specification declared here}} - __attribute__((nothrow)) void Func1() noexcept(false); - __attribute__((nothrow)) void Func3() noexcept; -}; - -void throwing() noexcept(false); -void non_throwing(bool b = true) noexcept; - -template <typename Fn> -struct T { - __attribute__((nothrow)) void f(Fn) noexcept(Fn()); -}; - -//expected-warning@-3 {{attribute 'nothrow' ignored due to conflicting exception specification}} -//expected-note@-4 {{exception specification declared here}} -template struct T<decltype(throwing)>; -template struct T<decltype(non_throwing)>; |