[PATCH] D114582: [SDAG] Refine MMO size when converting masked load/store to normal load/store
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 2 04:32:17 PST 2021
RKSimon added inline comments.
================
Comment at: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:10049
if (ISD::isConstantSplatVectorAllOnes(Mask.getNode()) && MST->isUnindexed() &&
- !MST->isCompressingStore() && !MST->isTruncatingStore())
+ !MST->isCompressingStore() && !MST->isTruncatingStore()) {
return DAG.getStore(MST->getChain(), SDLoc(N), MST->getValue(),
----------------
(style) drop the braces?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114582/new/
https://reviews.llvm.org/D114582
More information about the llvm-commits
mailing list