File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ class SILLinkerVisitor : public SILInstructionVisitor<SILLinkerVisitor, void> {
33
33
// / Worklist of SILFunctions we are processing.
34
34
llvm::SmallVector<SILFunction *, 128 > Worklist;
35
35
36
- // / A list of callees of the current instruction being visited. cleared after
37
- // / every instruction is visited.
38
- llvm::SmallVector<SILFunction *, 4 > FunctionDeserializationWorklist;
39
-
40
36
// / The current linking mode.
41
37
LinkingMode Mode;
42
38
@@ -45,8 +41,7 @@ class SILLinkerVisitor : public SILInstructionVisitor<SILLinkerVisitor, void> {
45
41
46
42
public:
47
43
SILLinkerVisitor (SILModule &M, SILModule::LinkingMode LinkingMode)
48
- : Mod(M), Worklist(), FunctionDeserializationWorklist(),
49
- Mode (LinkingMode), Changed(false ) {}
44
+ : Mod(M), Worklist(), Mode(LinkingMode), Changed(false ) {}
50
45
51
46
// / Process F, recursively deserializing any thing F may reference.
52
47
// / Returns true if any deserialization was performed.
You can’t perform that action at this time.
0 commit comments