diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-18 10:52:38 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-18 10:52:38 -0800 |
commit | 89742723e58e536a8659f4fe0689f72d4cf5c1e1 (patch) | |
tree | 19197afcb7d56c33d320fedc25d2475814406ab9 | |
parent | 8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed (diff) | |
download | gcc-89742723e58e536a8659f4fe0689f72d4cf5c1e1.zip gcc-89742723e58e536a8659f4fe0689f72d4cf5c1e1.tar.gz gcc-89742723e58e536a8659f4fe0689f72d4cf5c1e1.tar.bz2 |
(emit_move_insn, expand_expr): Fix typos in comments.
From-SVN: r3267
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |