aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2022-05-02 06:25:38 -0700
committerErich Keane <erich.keane@intel.com>2022-05-02 06:25:38 -0700
commit0c31da48389754822dc3eecc4723160c295b9ab2 (patch)
tree37148a19a7bc34c224f0f7b88700e69055460eb4 /clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
parent2e8a506142c207e3c04e153a7c62786743c553c3 (diff)
downloadllvm-0c31da48389754822dc3eecc4723160c295b9ab2.zip
llvm-0c31da48389754822dc3eecc4723160c295b9ab2.tar.gz
llvm-0c31da48389754822dc3eecc4723160c295b9ab2.tar.bz2
Revert "Deferred Concept Instantiation Implementation"
This reverts commit 4b6c2cd647e9e5a147954886338f97ffb6a1bcfb. The patch caused numerous ARM 32 bit build failures, since we added a 5th item to the PointerUnion, and went over the 2-bits available in the 32 bit pointers.
Diffstat (limited to 'clang/lib/ExtractAPI/ExtractAPIConsumer.cpp')
-rw-r--r--clang/lib/ExtractAPI/ExtractAPIConsumer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp b/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
index e13ad1e..b1de267 100644
--- a/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
+++ b/clang/lib/ExtractAPI/ExtractAPIConsumer.cpp
@@ -161,7 +161,6 @@ public:
// Skip templated functions.
switch (Decl->getTemplatedKind()) {
case FunctionDecl::TK_NonTemplate:
- case FunctionDecl::TK_DependentNonTemplate:
break;
case FunctionDecl::TK_MemberSpecialization:
case FunctionDecl::TK_FunctionTemplateSpecialization: