[PATCH] D104854: Introduce intrinsic llvm.isnan
Craig Topper via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 25 11:54:53 PDT 2021
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:22039
+ // Move FPSW to AX.
+ SDValue FPSW = DAG.getCopyToReg(DAG.getEntryNode(), DL, X86::FPSW, Test,
+ SDValue());
----------------
The code you copied this form was overly complicated. You can output Glue instead of MVT::i16 from XAM node and then pass that directly to FNSTSW16r in place of `FPSW, FPSW.getValue(1)`. I have made this change to X86ISelDAGToDAG.cpp
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104854/new/
https://reviews.llvm.org/D104854
More information about the cfe-commits
mailing list