[llvm] [DAG] Enhance SDPatternMatch to match integer minimum and maximum patterns in addition to the existing ISD nodes. (PR #111774)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 10 06:25:28 PDT 2024
================
@@ -609,23 +683,27 @@ inline BinaryOpc_match<LHS, RHS, true> m_Xor(const LHS &L, const RHS &R) {
}
template <typename LHS, typename RHS>
-inline BinaryOpc_match<LHS, RHS, true> m_SMin(const LHS &L, const RHS &R) {
- return BinaryOpc_match<LHS, RHS, true>(ISD::SMIN, L, R);
+inline auto m_SMin(const LHS &L, const RHS &R) {
----------------
c8ef wrote:
Done. Unit test added.
https://github.com/llvm/llvm-project/pull/111774
More information about the llvm-commits
mailing list