[PATCH] D55897: Add constrained fptrunc and fpext intrinsics
Cameron McInally via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 13 08:27:12 PST 2019
cameron.mcinally added inline comments.
================
Comment at: lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:2845
+ Node->getOperand(1).getValueType(),
+ Node->getValueType(0), dl, Node);
+ ReplaceNodeIgnoreChain(Node, Tmp1.getNode());
----------------
Would this lowering to `EmitStackConvert(...)` discard the rounding mode? I'm not familiar with this code, but I *think* it would.
E.g. STRICT_FP_ROUND would lower to a truncating store.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55897/new/
https://reviews.llvm.org/D55897
More information about the llvm-commits
mailing list