Skip to content

Fix typos introduced yesterday :-) #813

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 1 commit into from
Dec 29, 2015
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
6 changes: 3 additions & 3 deletions lib/SILOptimizer/Transforms/RedundantLoadElimination.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ using namespace swift;

STATISTIC(NumForwardedLoads, "Number of loads forwarded");

/// ComputeMaxAvailSet - If we ignore all unknow writes, what is the max
/// ComputeMaxAvailSet - If we ignore all unknown writes, what is the max
/// available set that can reach the beginning of a basic block. This helps
/// generating the genset and kill`set. i.e. if there is no downward visible
/// value that can reach the end of a basic block, then we know that the genset
Expand All @@ -108,7 +108,7 @@ STATISTIC(NumForwardedLoads, "Number of loads forwarded");
///
/// ComputeAvailSet - Compute the available set at the end of the basic block.
///
/// ComputeAvailValue - Compute the avaliable value at the end of the basic
/// ComputeAvailValue - Compute the available value at the end of the basic
/// block.
///
/// PerformRLE - Perform the actual redundant load elimination.
Expand Down Expand Up @@ -486,7 +486,7 @@ class RLEContext {
/// Process basic blocks w.r.t. to the given Kind.
void processBasicBlocksForRLE();

/// Iterate over the basic block in abitrary order and process each for
/// Iterate over the basic block in arbitrary order and process each for
/// its genset and killset.
void processBasicBlocksForGenKillSet();

Expand Down