diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-05 15:24:15 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-05 15:24:15 +0000 |
commit | 912757687975fdabbb85e7f10a96a136347aa43a (patch) | |
tree | db2d4b4b49c75785725db3dc511e5abdabfec0c9 /gcc/expr.c | |
parent | 690a81bd5f175cc0e0d0e63f3228703fd3623e10 (diff) | |
download | gcc-912757687975fdabbb85e7f10a96a136347aa43a.tar.gz |
* c-common.c, cfgexpand.c, cgraphunit.c, defaults.h,
et-forest.c, expr.c, gimplify.c, global.c, gthr-lynx.h,
hard-reg-set.h, modulo-sched.c, optabs.c, postreload-gcse.c,
tree-data-ref.c, tree-flow.h, tree-if-conv.c, tree-inline.c,
tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c,
tree-ssa-loop-niter.c, tree-ssa-operands.c,
tree-ssa-operands.h, tree-ssa-propagate.c,
tree-ssa-propagate.h, tree-ssa-threadupdate.c, value-prof.c,
vec.c, vec.h: Fix comment typos. Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87104 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 7d8c1f7f568..4f4a9aa4002 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3596,7 +3596,7 @@ expand_assignment (tree to, tree from, int want_value) if (bitsize >= GET_MODE_BITSIZE (GET_MODE (str_rtx))) break; - /* We can't handle fields split accross multiple entities. */ + /* We can't handle fields split across multiple entities. */ if (bitpos1 + bitsize > GET_MODE_BITSIZE (GET_MODE (str_rtx))) break; @@ -6120,7 +6120,7 @@ expand_expr_addr_expr (tree exp, rtx target, enum machine_mode tmode, case IMAGPART_EXPR: /* The imaginary part of the complex number is always second. - The expresion is therefore always offset by the size of the + The expression is therefore always offset by the size of the scalar type. */ offset = 0; bitpos = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (exp))); |