Taddeus Kroes 12 лет назад
Родитель
Сommit
73c3bd4768
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      phases/constprop.mli

+ 2 - 2
phases/constprop.mli

@@ -11,12 +11,12 @@
     the generated code. Note that this can only be applied when the assigned
     the generated code. Note that this can only be applied when the assigned
     expression is a constant or an SSA variable, since these have no side
     expression is a constant or an SSA variable, since these have no side
     effects and will not change in between the assignment and their uses. For
     effects and will not change in between the assignment and their uses. For
-    optimisation regular of variables, some form of liveness analysis would be
+    optimisation of regular variables, some form of liveness analysis would be
     required.
     required.
 
 
     Constant propagation is supplemented with constand folding and some
     Constant propagation is supplemented with constand folding and some
     arithmetic simplification, the latter specifically targeting optimisation
     arithmetic simplification, the latter specifically targeting optimisation
-    oppertunities created by earlier constant propagation. For example, in and
+    oppertunities created by earlier constant propagation. For example, in an
     array index calculation when constant array dimensions are propagated, the
     array index calculation when constant array dimensions are propagated, the
     index calculation can often be simplified.
     index calculation can often be simplified.