File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -85,18 +85,16 @@ class SILGlobalOpt {
85
85
// / The set of functions that have had their loops analyzed.
86
86
llvm::DenseSet<SILFunction *> LoopCheckedFunctions;
87
87
88
- // / Keep track of cold blocks.
89
- ColdBlockInfo ColdBlocks;
90
-
91
- // / Whether we see a "once" call to callees that we currently don't handle.
88
+ // / Whether we have seen any "once" calls to callees that we currently don't
89
+ // / handle.
92
90
bool UnhandledOnceCallee = false ;
93
91
94
92
// / A map from a globalinit_func to the number of times "once" has called the
95
93
// / function.
96
94
llvm::DenseMap<SILFunction *, unsigned > InitializerCount;
97
95
public:
98
96
SILGlobalOpt (SILModule *M, DominanceAnalysis *DA)
99
- : Module(M), DA(DA), ColdBlocks(DA) {}
97
+ : Module(M), DA(DA) {}
100
98
101
99
bool run ();
102
100
You can’t perform that action at this time.
0 commit comments