diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-12 20:59:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-12 20:59:20 +0000 |
commit | 5ea299394819db37bbdaa5cfe08406a9a901229d (patch) | |
tree | 28dbd08716b49961248c15e9d1d885e8c4579b50 /gnu/usr.bin/gcc | |
parent | c6948e5e68a8dbb7025a68527001656b5e993def (diff) |
Bring back the fix in r1.16 of the gcc 2.95 version of protector.c - the code
was present, but commented.
This fixes code generation of usr.sbin/dhcpd/memory.c!new_address_range()
on vax.
Diffstat (limited to 'gnu/usr.bin/gcc')
-rw-r--r-- | gnu/usr.bin/gcc/gcc/protector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/gcc/gcc/protector.c b/gnu/usr.bin/gcc/gcc/protector.c index bc135a6c988..4e464110d3d 100644 --- a/gnu/usr.bin/gcc/gcc/protector.c +++ b/gnu/usr.bin/gcc/gcc/protector.c @@ -1154,7 +1154,7 @@ copy_args_for_protection () /* move_arg_location may change the contents of DECL_RTL (parms). to avoid this, copies the contents */ - /* SET_DECL_RTL (parms, copy_rtx (DECL_RTL (parms))); */ + SET_DECL_RTL (parms, copy_rtx (DECL_RTL (parms))); /* generate codes for copying the content */ store_expr (parms, temp_rtx, 0); |