File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class V2SCopyInfo {
88
88
// VGPR to SGPR copy being processed
89
89
MachineInstr *Copy;
90
90
// All SALU instructions reachable from this copy in SSA graph
91
- DenseSet <MachineInstr *> SChain;
91
+ SetVector <MachineInstr *> SChain;
92
92
// Number of SGPR to VGPR copies that are used to put the SALU computation
93
93
// results back to VALU.
94
94
unsigned NumSVCopies;
@@ -1009,7 +1009,7 @@ void SIFixSGPRCopies::lowerVGPR2SGPRCopies(MachineFunction &MF) {
1009
1009
V2SCopyInfo &SI = SibInfoIt->getSecond ();
1010
1010
LLVM_DEBUG (dbgs () << " Sibling:\n " ; SI.dump ());
1011
1011
if (!SI.NeedToBeConvertedToVALU ) {
1012
- set_subtract ( SI.SChain , C.SChain );
1012
+ SI.SChain . set_subtract ( C.SChain );
1013
1013
if (needToBeConvertedToVALU (&SI))
1014
1014
LoweringWorklist.push_back (SI.ID );
1015
1015
}
You can’t perform that action at this time.
0 commit comments