[PATCH] D77075: [Statepoint] Fix StatepointLoweringInfo::GCTransitionArgs initialization
Denis Antrushin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 31 02:10:43 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG47107dc3bda1: [Statepoint] Fix StatepointLoweringInfo::GCTransitionArgs initialization (authored by dantrushin).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77075/new/
https://reviews.llvm.org/D77075
Files:
llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
Index: llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+++ llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
@@ -848,8 +848,8 @@
SI.GCArgs = ArrayRef<const Use>(ISP.gc_args_begin(), ISP.gc_args_end());
SI.StatepointInstr = ISP.getInstruction();
- SI.GCTransitionArgs =
- ArrayRef<const Use>(ISP.gc_args_begin(), ISP.gc_args_end());
+ SI.GCTransitionArgs = ArrayRef<const Use>(ISP.gc_transition_args_begin(),
+ ISP.gc_transition_args_end());
SI.ID = ISP.getID();
SI.DeoptState = ArrayRef<const Use>(ISP.deopt_begin(), ISP.deopt_end());
SI.StatepointFlags = ISP.getFlags();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77075.253813.patch
Type: text/x-patch
Size: 772 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200331/531a61bf/attachment-0001.bin>
More information about the llvm-commits
mailing list