[clang] [Sema] Migrate away from PointerUnion::dyn_cast (NFC) (PR #124229)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 23 21:36:52 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/124229.diff
1 Files Affected:
- (modified) clang/include/clang/Sema/SemaInternal.h (+1-1)
``````````diff
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));
``````````
</details>
https://github.com/llvm/llvm-project/pull/124229
More information about the cfe-commits
mailing list