Skip to content
Snippets Groups Projects
Commit 73f05d57 authored by Benjamin Kramer's avatar Benjamin Kramer
Browse files

[Sema] Fix assertion failure when checking for unused variables in a dependent context.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316177 91177308-0d34-0410-b5e6-96231b3b80d8
parent 9d5150b1
No related branches found
No related tags found
No related merge requests found
...@@ -1724,7 +1724,7 @@ static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) { ...@@ -1724,7 +1724,7 @@ static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
if (Construct && !Construct->isElidable()) { if (Construct && !Construct->isElidable()) {
CXXConstructorDecl *CD = Construct->getConstructor(); CXXConstructorDecl *CD = Construct->getConstructor();
if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() && if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() &&
!VD->evaluateValue()) (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
return false; return false;
} }
} }
......
...@@ -226,4 +226,14 @@ void test(int i) { ...@@ -226,4 +226,14 @@ void test(int i) {
NoLiteral nl2(42); // no-warning NoLiteral nl2(42); // no-warning
} }
} }
namespace crash {
struct a {
a(const char *);
};
template <typename b>
void c() {
a d(b::e ? "" : "");
}
}
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment