Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEdward Betts <edward@4angle.com>2017-02-21 14:03:07 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-02-21 14:03:07 +0300
commit539a6580da4236c0bd9efae80acb49dd38d408a6 (patch)
treeb7292de0ce60b9bdbedbdb8166d8718d96bcc86e /docs
parent4ccd94d7ccf69cc52532ea920b2d1b48f9c6a7cc (diff)
correct spelling mistakes (#4405)
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/abc-removal.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/abc-removal.txt b/docs/abc-removal.txt
index b44089c0de9..5c2ce91fd5f 100755
--- a/docs/abc-removal.txt
+++ b/docs/abc-removal.txt
@@ -26,7 +26,7 @@ some combination of the two.
To be clearer, and give an idea of what the algorithm can and
cannot do without describing it in detail... keep in mind that
- only "redunant" checks cannot be removed. By "redundant", I
+ only "redundant" checks cannot be removed. By "redundant", I
mean "already explicitly checked" in the method code.
Unfortunately, analyzing complex expressions is not so easy
@@ -136,7 +136,7 @@ some combination of the two.
In the first case, the BB has exactly two exit BBs, and their
execution conditions are easy to get from the condition of the
branch (see the "get_relation_from_branch_instruction"
- function, and expecially the end of "analyze_block" in
+ function, and especially the end of "analyze_block" in
abcremoval.c.
If there is a switch, the jump condition of every exit BB is
@@ -303,7 +303,7 @@ some combination of the two.
each BB tried to examine all possible conditions between all
variables, filling a sort of "evaluation matrix". The problem
was that the complexity of this evaluation was quadratic (or
- worse) on the number of variables, and that many wariables
+ worse) on the number of variables, and that many variables
were examined even if they were not involved in any array
access.
@@ -332,7 +332,7 @@ some combination of the two.
[1b] Prepare the evaluation graph (empty)
- [1b] Summarize each varible definition, and put
+ [1b] Summarize each variable definition, and put
the resulting relations in the evaluation
graph