[PATCH] D56740: [SelectionDAG] Split very large token factors for chained stores to 64k chunks.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 18 10:43:01 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL351571: [SelectionDAG] Split very large token factors for chained stores to 64k chunks. (authored by fhahn, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D56740?vs=182147&id=182558#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56740/new/
https://reviews.llvm.org/D56740
Files:
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Index: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -19349,7 +19349,7 @@
if (AddNewChain)
TFOps.insert(TFOps.begin(), NewChain);
- SDValue TF = DAG.getNode(ISD::TokenFactor, SDLoc(STChain), MVT::Other, TFOps);
+ SDValue TF = DAG.getTokenFactor(SDLoc(STChain), TFOps);
CombineTo(St, TF);
AddToWorklist(STChain);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56740.182558.patch
Type: text/x-patch
Size: 521 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190118/55150448/attachment.bin>
More information about the llvm-commits
mailing list