[PATCH] D93691: [RISCV] Add intrinsics for vf[n]macc/vf[n]msac/vf[n]madd/vf[n]msub instructions
Jessica Clarke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 22 11:12:23 PST 2020
jrtc27 added inline comments.
================
Comment at: llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td:1892
+//===----------------------------------------------------------------------===//
+defm PseudoVFMACC : VPseudoTernaryV_VV_VX_AAXA</*IsFloat*/1>;
+defm PseudoVFNMACC : VPseudoTernaryV_VV_VX_AAXA</*IsFloat*/1>;
----------------
TableGen has true/false these days that's better than 0/1 when using a bit like this. Though I see the file currently already uses the old style in a bunch of places.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D93691/new/
https://reviews.llvm.org/D93691
More information about the llvm-commits
mailing list