function.c (assign_parms): Add missing argument to set_mem_attributes call.

* function.c (assign_parms): Add missing argument to set_mem_attributes
	call.

From-SVN: r34404
This commit is contained in:
J. David Anglin 2000-06-05 12:58:25 -04:00 committed by Richard Kenner
parent 1687c88ca9
commit a696c1d662
2 changed files with 7 additions and 1 deletions

View 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

View 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));