[PATCH] D71892: [X86] Adding custom operation for strict fpextend/fpround

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 26 13:46:43 PST 2019


craig.topper accepted this revision.
craig.topper added a comment.
This revision is now accepted and ready to land.

LGTM with that one comment.



================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:19981
+                       {Op->getOperand(0), Res});
+  else
+    return DAG.getNode(X86ISD::VFPEXT, DL, VT, Res);
----------------
Drop the else since we alerady returned in the if.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D71892/new/

https://reviews.llvm.org/D71892





More information about the llvm-commits mailing list