[PATCH] D110346: [SystemZ] Implement ISD::BITCAST for fp128 -> i128.
Ulrich Weigand via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 23 10:42:07 PDT 2021
uweigand accepted this revision.
uweigand added a comment.
This revision is now accepted and ready to land.
LGTM, thanks!
================
Comment at: llvm/lib/Target/SystemZ/SystemZISelLowering.cpp:296
+ // Handle bitcast from fp128 to i128.
+ setOperationAction(ISD::BITCAST, MVT::i128, Custom);
----------------
jonpa wrote:
> hmm.. should the check for soft-float be done here instead?
No, I think it's better to have it in the implementation -- just in case we need to handle some other cases in BITCAST later.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110346/new/
https://reviews.llvm.org/D110346
More information about the llvm-commits
mailing list