diff options
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/function.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23391b3..09f0609 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/function.c b/gcc/function.c index 31b71c6..d2c8a52 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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)); |
