[clang] 148da06 - [Sema] Migrate away from PointerUnion::dyn_cast (NFC) (#124229)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 24 01:12:49 PST 2025
Author: Kazu Hirata
Date: 2025-01-24T01:12:45-08:00
New Revision: 148da06628507123f340c68b0ba732c31c3b6de9
URL: https://github.com/llvm/llvm-project/commit/148da06628507123f340c68b0ba732c31c3b6de9
DIFF: https://github.com/llvm/llvm-project/commit/148da06628507123f340c68b0ba732c31c3b6de9.diff
LOG: [Sema] Migrate away from PointerUnion::dyn_cast (NFC) (#124229)
Note that PointerUnion::dyn_cast has been soft deprecated in
PointerUnion.h:
// FIXME: Replace the uses of is(), get() and dyn_cast() with
// isa<T>, cast<T> and the llvm::dyn_cast<T>
Literal migration would result in dyn_cast_if_present (see the
definition of PointerUnion::dyn_cast), but this patch uses dyn_cast
because we expect UPP.first to be nonnull.
Added:
Modified:
clang/include/clang/Sema/SemaInternal.h
Removed:
################################################################################
diff --git a/clang/include/clang/Sema/SemaInternal.h b/clang/include/clang/Sema/SemaInternal.h
index 27cda71989726d..95874077050a9c 100644
--- a/clang/include/clang/Sema/SemaInternal.h
+++ b/clang/include/clang/Sema/SemaInternal.h
@@ -72,7 +72,7 @@ inline std::pair<unsigned, unsigned> getDepthAndIndex(const NamedDecl *ND) {
/// Retrieve the depth and index of an unexpanded parameter pack.
inline std::pair<unsigned, unsigned>
getDepthAndIndex(UnexpandedParameterPack UPP) {
- if (const auto *TTP = UPP.first.dyn_cast<const TemplateTypeParmType *>())
+ if (const auto *TTP = dyn_cast<const TemplateTypeParmType *>(UPP.first))
return std::make_pair(TTP->getDepth(), TTP->getIndex());
return getDepthAndIndex(cast<NamedDecl *>(UPP.first));
More information about the cfe-commits
mailing list