Skip to content

Commit aa9d682

Browse files
committed
[gardening] Fix up some comments to be proper doxygen comments
1 parent a4fd8d8 commit aa9d682

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lib/SILOptimizer/SILCombiner/SILCombiner.h

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)