aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1998-06-30 22:10:51 -0700
committerRichard Henderson <rth@gcc.gnu.org>1998-06-30 22:10:51 -0700
commitaac5cc1620c19d41b26c09982ed666e0dae3d453 (patch)
tree828f62b36645dd969e85f79cb627a5fabb232ee1 /gcc/expr.h
parent1eac9f59f2a15474966ffa2fe591119cc5a4360b (diff)
downloadgcc-aac5cc1620c19d41b26c09982ed666e0dae3d453.zip
gcc-aac5cc1620c19d41b26c09982ed666e0dae3d453.tar.gz
gcc-aac5cc1620c19d41b26c09982ed666e0dae3d453.tar.bz2
expr.c (emit_group_load, [...]): Rewrite considering the size and alignment of the structure being manipulated.
* expr.c (emit_group_load, emit_group_store): Rewrite considering the size and alignment of the structure being manipulated. * expr.c, calls.c, function.c: Update all callers. * expr.h: Update prototypes. * cse.c (invalidate): Cope with parallels. From-SVN: r20867
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index f75828f..11f4673 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -714,10 +714,10 @@ extern void move_block_from_reg PROTO((int, rtx, int, int));
/* Load a BLKmode value into non-consecutive registers represented by a
PARALLEL. */
-extern void emit_group_load PROTO((rtx, rtx));
+extern void emit_group_load PROTO((rtx, rtx, int, int));
/* Store a BLKmode value from non-consecutive registers represented by a
PARALLEL. */
-extern void emit_group_store PROTO((rtx, rtx));
+extern void emit_group_store PROTO((rtx, rtx, int, int));
/* Mark REG as holding a parameter for the next CALL_INSN. */
extern void use_reg PROTO((rtx *, rtx));