Skip to content

[gardening] Fix up some comments to be proper doxygen comments #35180

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions lib/SILOptimizer/SILCombiner/SILCombiner.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,20 @@ class SILCombiner :

DominanceAnalysis *DA;

// Determine the set of types a protocol conforms to in whole-module
// compilation mode.
/// Determine the set of types a protocol conforms to in whole-module
/// compilation mode.
ProtocolConformanceAnalysis *PCA;

// Class hierarchy analysis needed to confirm no derived classes of a sole
// conforming class.
/// Class hierarchy analysis needed to confirm no derived classes of a sole
/// conforming class.
ClassHierarchyAnalysis *CHA;

/// Worklist containing all of the instructions primed for simplification.
SmallSILInstructionWorklist<256> Worklist;

/// A cache of "dead end blocks" through which all paths it is known that the
/// program will terminate. This means that we are allowed to leak
/// objects.
DeadEndBlocks deadEndBlocks;

/// Variable to track if the SILCombiner made any changes.
Expand Down