(clrstr_optab): New declaration.
authorRichard Kenner <kenner@gcc.gnu.org>
Sun, 24 Dec 1995 11:35:03 +0000 (06:35 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 24 Dec 1995 11:35:03 +0000 (06:35 -0500)
(clear_storage): New parm, ALIGN.

From-SVN: r10838

gcc/expr.h

index 374b4a7bdf48eb505def3f731d71ba8c48db07b6..56034e269051055a8f2a2a6fbb8434f39d3652eb 100644 (file)
@@ -471,6 +471,9 @@ extern enum insn_code movcc_gen_code[NUM_MACHINE_MODES];
 /* This array records the insn_code of insns to perform block moves.  */
 extern enum insn_code movstr_optab[NUM_MACHINE_MODES];
 
+/* This array records the insn_code of insns to perform block clears.  */
+extern enum insn_code clrstr_optab[NUM_MACHINE_MODES];
+
 /* Define functions given in optabs.c.  */
 
 /* Expand a binary operation given optab and rtx operands.  */
@@ -631,8 +634,9 @@ extern void use_reg PROTO((rtx*, rtx));
 extern void use_regs PROTO((rtx*, int, int));
 
 /* Write zeros through the storage of OBJECT.
-   If OBJECT has BLKmode, SIZE is its length in bytes.  */
-extern void clear_storage PROTO((rtx, rtx));
+   If OBJECT has BLKmode, SIZE is its length in bytes and ALIGN is its
+   alignment.
+extern void clear_storage PROTO((rtx, rtx, int));
 
 /* Emit insns to set X from Y.  */
 extern rtx emit_move_insn PROTO((rtx, rtx));