Taddeus Kroes hace 12 años
padre
commit
0e88812018
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      phases/boolop.mli
  2. 2 2
      types.mli

+ 1 - 1
phases/boolop.mli

@@ -2,7 +2,7 @@
     types. *)
 
 (** This phase transforms operations on boolean values to equivalent operations
-    no different data types. This transformation is necessary, because the CiviC
+    on different data types. This transformation is necessary, because the CiviC
     VM does not define some operations for boolean arguments.
 
     This phase also handles the first step of short-circuit evaluation, by

+ 2 - 2
types.mli

@@ -164,9 +164,9 @@ type instr =
   | Global of ctype
     (** [.global <type>] *)
 
-  | Store of ctype * stack_scope * int  (** [[ifba]store[ gn]] *)
+  | Store of ctype * stack_scope * int  (** [[ifba]store[ gnl]] *)
 
-  | Load of ctype * stack_scope * int   (** [[ifb]load[ gn] G] *)
+  | Load of ctype * stack_scope * int   (** [[ifb]load[ gnl] G] *)
   | LoadConst of ctype * int            (** [[ifb]loadc C] *)
   | LoadImm of const                    (** [[ifb]loadc_[01tf] | iloadc_m1] *)