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/output.h | |
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/output.h')
-rw-r--r-- | gcc/output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h index dc2a698..7937988 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -77,7 +77,7 @@ extern rtx final_scan_insn PARAMS ((rtx, FILE *, int, int, int)); /* Replace a SUBREG with a REG or a MEM, based on the thing it is a subreg of. */ -extern rtx alter_subreg PARAMS ((rtx)); +extern rtx alter_subreg PARAMS ((rtx *)); /* Report inconsistency between the assembler template and the operands. In an `asm', it's the user's fault; otherwise, the compiler's fault. */ |