OSDN Git Service

(emit_move_insn, expand_expr): Fix typos in comments.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jan 1993 18:52:38 +0000 (18:52 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jan 1993 18:52:38 +0000 (18:52 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3267 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/expr.c

index 3fd6825..94e38b4 100644 (file)
@@ -1591,7 +1591,7 @@ emit_move_insn (x, y)
     return
       emit_insn (GEN_FCN (mov_optab->handlers[(int) mode].insn_code) (x, y));
 
-  /* Expand complex moves by moving real part and imag part, if posible.  */
+  /* Expand complex moves by moving real part and imag part, if possible.  */
   else if ((class == MODE_COMPLEX_FLOAT || class == MODE_COMPLEX_INT)
           && submode != BLKmode
           && (mov_optab->handlers[(int) submode].insn_code
@@ -3803,7 +3803,7 @@ expand_expr (exp, target, tmode, modifier)
                    || TREE_CODE (TREE_TYPE (exp2)) == UNION_TYPE)))
          MEM_IN_STRUCT_P (temp) = 1;
        MEM_VOLATILE_P (temp) = TREE_THIS_VOLATILE (exp);
-#if 0 /* It is incorrectto set RTX_UNCHANGING_P here, because the fact that
+#if 0 /* It is incorrect to set RTX_UNCHANGING_P here, because the fact that
         a location is accessed through a pointer to const does not mean
         that the value there can never change.  */
        RTX_UNCHANGING_P (temp) = TREE_READONLY (exp);
@@ -4066,7 +4066,7 @@ expand_expr (exp, target, tmode, modifier)
        temp = gen_rtx (MEM, mode, memory_address (mode, op0));
        MEM_IN_STRUCT_P (temp) = 1;
        MEM_VOLATILE_P (temp) = TREE_THIS_VOLATILE (exp);
-#if 0 /* It is incorrectto set RTX_UNCHANGING_P here, because the fact that
+#if 0 /* It is incorrect to set RTX_UNCHANGING_P here, because the fact that
         a location is accessed through a pointer to const does not mean
         that the value there can never change.  */
        RTX_UNCHANGING_P (temp) = TREE_READONLY (exp);