function.c (assign_parms): Add missing argument to set_mem_attributes call.
authorJ. David Anglin <dave@hiauly1.hia.nrc.ca>
Mon, 5 Jun 2000 16:58:25 +0000 (12:58 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 5 Jun 2000 16:58:25 +0000 (12:58 -0400)
* function.c (assign_parms): Add missing argument to set_mem_attributes
call.

From-SVN: r34404

gcc/ChangeLog
gcc/function.c

index 23391b3..09f0609 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * function.c (assign_parms): Add missing argument to set_mem_attributes
+       call.
+
 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
 
        * tree.h (VOID_TYPE_P): New macro.
@@ -19,6 +24,7 @@
        * c-parse.y, c-parse.c, c-parse.h: Regenerate.
        * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
 
+>>>>>>> 1.6841
 Mon Jun  5 06:46:28 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * alias.c (get_alias_set): If compnent is addressable, use alias
index 31b71c6..d2c8a52 100644 (file)
@@ -4640,7 +4640,7 @@ assign_parms (fndecl)
              else
                copy = assign_stack_temp (TYPE_MODE (type),
                                          int_size_in_bytes (type), 1);
-             set_mem_attributes (copy, parm);
+             set_mem_attributes (copy, parm, 1);
 
              store_expr (parm, copy, 0);
              emit_move_insn (parmreg, XEXP (copy, 0));