diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-14 13:51:10 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-14 13:51:10 +0000 |
commit | 06b3c9f7ebb9f8d23e289dfa5d26a8d6065ba4ff (patch) | |
tree | 0f25f70b0a282f4cb777692ce7091aecdedb8e2d /gcc/sdbout.c | |
parent | 9aeab13cd96fa38c87ea6a9057d50fab58d12797 (diff) | |
download | gcc-06b3c9f7ebb9f8d23e289dfa5d26a8d6065ba4ff.tar.gz |
* 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
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 8a6ea31ab79..ab0a0d89849 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -809,7 +809,7 @@ sdbout_symbol (decl, local) if (REGNO (value) >= FIRST_PSEUDO_REGISTER) return; } - regno = REGNO (alter_subreg (DECL_RTL (decl))); + regno = REGNO (alter_subreg (&DECL_RTL (decl))); value = DECL_RTL (decl); } /* Don't output anything if an auto variable |