[PATCH] D43206: [GISel]: Add pattern matcher for FMUL and FADD

Quentin Colombet via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 13 10:02:10 PST 2018


qcolombet accepted this revision.
qcolombet added inline comments.
This revision is now accepted and ready to land.


================
Comment at: include/llvm/CodeGen/GlobalISel/MIPatternMatch.h:202
+m_GFAdd(const LHS &L, const RHS &R) {
+  return BinaryOp_match<LHS, RHS, TargetOpcode::G_FADD, true>(L, R);
+}
----------------
This should be its own separate commit.


Repository:
  rL LLVM

https://reviews.llvm.org/D43206





More information about the llvm-commits mailing list