From: Davide Italiano Date: Sat, 25 Jul 2015 01:19:32 +0000 (+0000) Subject: [SemaTemplate] Detect instantiation of unparsed exceptions. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fabb378229998bdce8a9415ed137b2e145da59c6;p=clang [SemaTemplate] Detect instantiation of unparsed exceptions. This fixes the clang crash reported in PR24000. Differential Revision: http://reviews.llvm.org/D11341 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExceptionSpec.cpp b/lib/Sema/SemaExceptionSpec.cpp index 8a9372336e..ec3d9fd82f 100644 --- a/lib/Sema/SemaExceptionSpec.cpp +++ b/lib/Sema/SemaExceptionSpec.cpp @@ -161,7 +161,13 @@ Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) { else InstantiateExceptionSpec(Loc, SourceDecl); - return SourceDecl->getType()->castAs(); + const FunctionProtoType *Proto = + SourceDecl->getType()->castAs(); + if (Proto->getExceptionSpecType() == clang::EST_Unparsed) { + Diag(Loc, diag::err_exception_spec_not_parsed); + Proto = nullptr; + } + return Proto; } void diff --git a/test/SemaTemplate/crash-unparsed-exception.cpp b/test/SemaTemplate/crash-unparsed-exception.cpp new file mode 100644 index 0000000000..1226b35deb --- /dev/null +++ b/test/SemaTemplate/crash-unparsed-exception.cpp @@ -0,0 +1,17 @@ +// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify -fcxx-exceptions -fexceptions %s + +struct A { + virtual ~A(); +}; +template +struct B {}; +struct C { + template + struct D { + ~D() throw(); + }; + struct E : A { + D d; //expected-error{{exception specification is not available until end of class definition}} + }; + B b; //expected-note{{in instantiation of template class 'B' requested here}} +};