[llvm] [VPlan] Add m_Deferred. NFC (PR #133736)

Ramkumar Ramachandra via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 08:52:08 PDT 2025


================
@@ -66,6 +66,27 @@ struct specificval_ty {
 
 inline specificval_ty m_Specific(const VPValue *VPV) { return VPV; }
 
+/// Stores a reference to the VPValue *, not the VPValue * itself,
+/// thus can be used in commutative matchers.
+template <typename Class> struct deferredval_ty {
----------------
artagnon wrote:

IIRC, we don't have a const matcher for m_VPValue(), and considering that m_Deferred() is supposed to be used along with m_VPValue(), I think it's safe to remove the const variant, and un-templatize this.

https://github.com/llvm/llvm-project/pull/133736


More information about the llvm-commits mailing list