kamleshbhalui updated this revision to Diff 230747. kamleshbhalui added a comment.
Thanks, @vsk for reviewing. I have incorporated your suggestions. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D70537/new/ https://reviews.llvm.org/D70537 Files: clang/lib/CodeGen/CGDebugInfo.cpp clang/test/CodeGenCXX/pr42710.cpp Index: clang/test/CodeGenCXX/pr42710.cpp =================================================================== --- /dev/null +++ clang/test/CodeGenCXX/pr42710.cpp @@ -0,0 +1,20 @@ +// RUN: %clang %s -DTYPE=auto -emit-llvm -S -g -o - -std=c++17 +// expected-no-diagnostics +// RUN: %clang %s -DTYPE=int -emit-llvm -S -g -o - -std=c++17 +// expected-no-diagnostics + +struct TypeId +{ + inline static int counter{}; + + template<typename...> + inline static const TYPE identifier = counter++; + + template<typename... Args> + inline static const TYPE value = identifier<Args...>; +}; + +int main() +{ + return TypeId::value<int>; +} Index: clang/lib/CodeGen/CGDebugInfo.cpp =================================================================== --- clang/lib/CodeGen/CGDebugInfo.cpp +++ clang/lib/CodeGen/CGDebugInfo.cpp @@ -1433,6 +1433,10 @@ if (isa<VarTemplatePartialSpecializationDecl>(V)) continue; + if (isa<VarTemplateSpecializationDecl>(V) && + V->getType()->isUndeducedType()) + continue; + // Reuse the existing static member declaration if one exists auto MI = StaticDataMemberCache.find(V->getCanonicalDecl()); if (MI != StaticDataMemberCache.end()) {
Index: clang/test/CodeGenCXX/pr42710.cpp =================================================================== --- /dev/null +++ clang/test/CodeGenCXX/pr42710.cpp @@ -0,0 +1,20 @@ +// RUN: %clang %s -DTYPE=auto -emit-llvm -S -g -o - -std=c++17 +// expected-no-diagnostics +// RUN: %clang %s -DTYPE=int -emit-llvm -S -g -o - -std=c++17 +// expected-no-diagnostics + +struct TypeId +{ + inline static int counter{}; + + template<typename...> + inline static const TYPE identifier = counter++; + + template<typename... Args> + inline static const TYPE value = identifier<Args...>; +}; + +int main() +{ + return TypeId::value<int>; +} Index: clang/lib/CodeGen/CGDebugInfo.cpp =================================================================== --- clang/lib/CodeGen/CGDebugInfo.cpp +++ clang/lib/CodeGen/CGDebugInfo.cpp @@ -1433,6 +1433,10 @@ if (isa<VarTemplatePartialSpecializationDecl>(V)) continue; + if (isa<VarTemplateSpecializationDecl>(V) && + V->getType()->isUndeducedType()) + continue; + // Reuse the existing static member declaration if one exists auto MI = StaticDataMemberCache.find(V->getCanonicalDecl()); if (MI != StaticDataMemberCache.end()) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits