ahatanak created this revision. ahatanak added a reviewer: aprantl. ahatanak added a project: clang. Herald added a project: All. ahatanak requested review of this revision.
rdar://92845517 Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D125839 Files: clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp clang/test/Modules/Inputs/gmodules-deduction-guide.h clang/test/Modules/gmodules-deduction-guide.cpp Index: clang/test/Modules/gmodules-deduction-guide.cpp =================================================================== --- /dev/null +++ clang/test/Modules/gmodules-deduction-guide.cpp @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -std=c++2b -x c++-header -emit-pch -fmodule-format=obj -I %S/Inputs \ +// RUN: -o %t.pch %S/Inputs/gmodules-deduction-guide.h \ +// RUN: -mllvm -debug-only=pchcontainer &>%t-pch.ll +// RUN: cat %t-pch.ll | FileCheck %s + +// CHECK: ![[V0:.*]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "S<A>", +// CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "Type0",{{.*}}, baseType: ![[V0]]) Index: clang/test/Modules/Inputs/gmodules-deduction-guide.h =================================================================== --- /dev/null +++ clang/test/Modules/Inputs/gmodules-deduction-guide.h @@ -0,0 +1,11 @@ +struct A { +}; + +template <class T> +struct S{ + S(const A &); +}; + +S(const A&) -> S<A>; + +typedef decltype(S(A())) Type0; Index: clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp =================================================================== --- clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp +++ clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp @@ -96,6 +96,10 @@ } bool VisitFunctionDecl(FunctionDecl *D) { + // Skip deduction guides. + if (isa<CXXDeductionGuideDecl>(D)) + return true; + if (isa<CXXMethodDecl>(D)) // This is not yet supported. Constructing the `this' argument // mandates a CodeGenFunction.
Index: clang/test/Modules/gmodules-deduction-guide.cpp =================================================================== --- /dev/null +++ clang/test/Modules/gmodules-deduction-guide.cpp @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -std=c++2b -x c++-header -emit-pch -fmodule-format=obj -I %S/Inputs \ +// RUN: -o %t.pch %S/Inputs/gmodules-deduction-guide.h \ +// RUN: -mllvm -debug-only=pchcontainer &>%t-pch.ll +// RUN: cat %t-pch.ll | FileCheck %s + +// CHECK: ![[V0:.*]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "S<A>", +// CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "Type0",{{.*}}, baseType: ![[V0]]) Index: clang/test/Modules/Inputs/gmodules-deduction-guide.h =================================================================== --- /dev/null +++ clang/test/Modules/Inputs/gmodules-deduction-guide.h @@ -0,0 +1,11 @@ +struct A { +}; + +template <class T> +struct S{ + S(const A &); +}; + +S(const A&) -> S<A>; + +typedef decltype(S(A())) Type0; Index: clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp =================================================================== --- clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp +++ clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp @@ -96,6 +96,10 @@ } bool VisitFunctionDecl(FunctionDecl *D) { + // Skip deduction guides. + if (isa<CXXDeductionGuideDecl>(D)) + return true; + if (isa<CXXMethodDecl>(D)) // This is not yet supported. Constructing the `this' argument // mandates a CodeGenFunction.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits