diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-25 07:01:09 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-25 07:01:09 -0500 |
commit | e4f93898976d566509afd8007eac0e135a9e5ae5 (patch) | |
tree | 9797bc474d42278748d5426e37f048bdc3fea09a | |
parent | d0d4af87cc5db924b337c8076cae91c65d19291c (diff) | |
download | gcc-e4f93898976d566509afd8007eac0e135a9e5ae5.zip gcc-e4f93898976d566509afd8007eac0e135a9e5ae5.tar.gz gcc-e4f93898976d566509afd8007eac0e135a9e5ae5.tar.bz2 |
(store_one_arg): Fix typo in previous change.
From-SVN: r3875
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index bd7b909..1d6837e 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2798,7 +2798,7 @@ store_one_arg (arg, argblock, may_be_alloca, variable_size, fndecl, emit_push_insn for BLKmode is careful to avoid it. */ excess = (arg->size.constant - int_size_in_bytes (TREE_TYPE (pval)) + partial * UNITS_PER_WORD); - size_rtx = expr_size (TREE_TYPE (pval)); + size_rtx = expr_size (pval); } emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx, |