diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-08-05 19:03:01 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-08-05 19:03:01 +0000 |
commit | 2a58a18d67abe52eafc84b11b2ed6e9de491116f (patch) | |
tree | ad4bdebf27a0e947d1eecb0f6547247fce152839 /clang/lib/CodeGen | |
parent | 61ba38c8dd07cdbe239cdccafe691548ea04be04 (diff) | |
download | bcm5719-llvm-2a58a18d67abe52eafc84b11b2ed6e9de491116f.tar.gz bcm5719-llvm-2a58a18d67abe52eafc84b11b2ed6e9de491116f.zip |
PR26423: Assert on valid use of using declaration of a function with an undeduced auto return type
For now just disregard the using declaration in this case. Suboptimal,
but wiring up the ability to have declarations of functions that are
separate from their definition (we currently only do that for member
functions) and have differing return types (we don't have any support
for that) is more work than seems reasonable to at least fix this crash.
llvm-svn: 277852
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index d6cb798c475..8722e5ae260 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -3654,6 +3654,16 @@ void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { // Emitting one decl is sufficient - debuggers can detect that this is an // overloaded name & provide lookup for all the overloads. const UsingShadowDecl &USD = **UD.shadow_begin(); + + // FIXME: Skip functions with undeduced auto return type for now since we + // don't currently have the plumbing for separate declarations & definitions + // of free functions and mismatched types (auto in the declaration, concrete + // return type in the definition) + if (const auto *FD = dyn_cast<FunctionDecl>(USD.getUnderlyingDecl())) + if (const auto *AT = + FD->getType()->getAs<FunctionProtoType>()->getContainedAutoType()) + if (AT->getDeducedType().isNull()) + return; if (llvm::DINode *Target = getDeclarationOrDefinition(USD.getUnderlyingDecl())) DBuilder.createImportedDeclaration( |