Revert change accidentally committed in r191150.
llvm-svn: 191237
diff --git a/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp b/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
index d712cec..e03e8c5 100644
--- a/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+++ b/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
@@ -3372,9 +3372,7 @@
OldVar->isPreviousDeclInSameBlockScope());
NewVar->setAccess(OldVar->getAccess());
- // For local variables, inherit the 'used' and 'referenced' flags from the
- // primary template.
- if (OldVar->getLexicalDeclContext()->isFunctionOrMethod()) {
+ if (!OldVar->isStaticDataMember()) {
NewVar->setIsUsed(OldVar->isUsed(false));
NewVar->setReferenced(OldVar->isReferenced());
}