diff options
author | Jan Hubicka <jh@suse.cz> | 2001-11-14 14:51:10 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-11-14 13:51:10 +0000 |
commit | 49d801d3dba0c2ed5038253a447ca2cdff549754 (patch) | |
tree | 0f25f70b0a282f4cb777692ce7091aecdedb8e2d /gcc/dbxout.c | |
parent | 373bd0fac976b237f52a957e37597b0138ad1eab (diff) | |
download | gcc-49d801d3dba0c2ed5038253a447ca2cdff549754.zip gcc-49d801d3dba0c2ed5038253a447ca2cdff549754.tar.gz gcc-49d801d3dba0c2ed5038253a447ca2cdff549754.tar.bz2 |
dbxout.c (dbxout_symbol_location): Update call of alter_subreg.
* dbxout.c (dbxout_symbol_location): Update call of alter_subreg.
* final.c (walk_alter_subreg): Take pointer; update call of alter_subreg.
(final_scan_insn): Update call of alter_subreg.
(cleanup_subreg_operands): Likewise.
(alter_subreg): Rewrite using simplify_subreg.
(output_address, output_operand): Update call of alter_subreg.
* output.h (alter_subreg): Update prototype.
* sdbout.c (sdbout_symbol): Update call of alter_subreg.
* simplify-rtx.c (simplify_subreg): Copy ORIGINAL_REGNO.
* Makefile.in (final.o): Add depdendancy on expr.h
From-SVN: r47013
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8528abf..344ebbe 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -2107,7 +2107,7 @@ dbxout_symbol_location (decl, type, suffix, home) if (REGNO (value) >= FIRST_PSEUDO_REGISTER) return 0; } - home = alter_subreg (home); + home = alter_subreg (&home); } if (GET_CODE (home) == REG) { |