[PATCH] D40335: [WIP] X86-specific path: Implemented the fusing of MUL+SUBADD to FMSUBADD
Dmitry Venikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 28 04:30:23 PST 2017
Quolyk added inline comments.
================
Comment at: lib/Target/X86/X86ISelLowering.cpp:7862
return AddSub;
+ if (SDValue FMSubAdd = lowerToFMSubAdd(BV, Subtarget, DAG))
+ return FMSubAdd;
----------------
I added that if statement, but I have problems testing this, specifically I don't know how to test this
https://reviews.llvm.org/D40335
More information about the llvm-commits
mailing list