File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
lib/SILOptimizer/SILCombiner Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,20 @@ class SILCombiner :
4949
5050 DominanceAnalysis *DA;
5151
52- // Determine the set of types a protocol conforms to in whole-module
53- // compilation mode.
52+ // / Determine the set of types a protocol conforms to in whole-module
53+ // / compilation mode.
5454 ProtocolConformanceAnalysis *PCA;
5555
56- // Class hierarchy analysis needed to confirm no derived classes of a sole
57- // conforming class.
56+ // / Class hierarchy analysis needed to confirm no derived classes of a sole
57+ // / conforming class.
5858 ClassHierarchyAnalysis *CHA;
5959
6060 // / Worklist containing all of the instructions primed for simplification.
6161 SmallSILInstructionWorklist<256 > Worklist;
6262
63+ // / A cache of "dead end blocks" through which all paths it is known that the
64+ // / program will terminate. This means that we are allowed to leak
65+ // / objects.
6366 DeadEndBlocks deadEndBlocks;
6467
6568 // / Variable to track if the SILCombiner made any changes.
You can’t perform that action at this time.
0 commit comments