Also translate fma intrinsic to this opcode.
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
LGTM with a nit.
include/llvm/Target/GenericOpcodes.td | ||
---|---|---|
392 | Is this $src1 + ($src2 * $src3) or ($src1 * $src2) + $src3? Could you add a comment indicating how it should be read? | |
394 | This is correct but only because isCommutable also indicates that there are three operands and this has four. Ideally we'd improve on that but I don't think it's a task for this patch. |
Is this $src1 + ($src2 * $src3) or ($src1 * $src2) + $src3? Could you add a comment indicating how it should be read?