diff options
author | J. David Anglin <dave@hiauly1.hia.nrc.ca> | 2000-06-05 12:58:25 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-06-05 12:58:25 -0400 |
commit | a696c1d662f45421f7185f0fd31c010e86bd227a (patch) | |
tree | 75b35d8dd1017b1710bfdfa21a2d81096c5cecf9 /gcc/function.c | |
parent | 1687c88ca9da87af6065e1f34093636cba3303c2 (diff) | |
download | gcc-a696c1d662f45421f7185f0fd31c010e86bd227a.zip gcc-a696c1d662f45421f7185f0fd31c010e86bd227a.tar.gz gcc-a696c1d662f45421f7185f0fd31c010e86bd227a.tar.bz2 |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |