From: Jim Wilson Date: Mon, 18 Jan 1993 18:52:38 +0000 (-0800) Subject: (emit_move_insn, expand_expr): Fix typos in comments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89742723e58e536a8659f4fe0689f72d4cf5c1e1;p=gcc.git (emit_move_insn, expand_expr): Fix typos in comments. From-SVN: r3267 --- diff --git a/gcc/expr.c b/gcc/expr.c index 3fd68250a7d..94e38b46e67 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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);