dwarf2out.c (mem_loc_descriptor): Use XEXP, not SUBREG_REG, with auto-inc codes.

* dwarf2out.c (mem_loc_descriptor): Use XEXP, not SUBREG_REG,
        with auto-inc codes.

From-SVN: r102640
This commit is contained in:
Richard Henderson 2005-08-01 14:10:26 -07:00 committed by Richard Henderson
parent 5671655ef9
commit 75735872fa
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2005-08-01 Richard Henderson <rth@redhat.com>
* dwarf2out.c (mem_loc_descriptor): Use XEXP, not SUBREG_REG,
with auto-inc codes.
* config/alpha/predicates.md (and_operand): Test mode of CONST_DOUBLE.
2005-08-01 Jan Hubicka <jh@suse.cz>

View File

@ -8640,7 +8640,7 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode, bool can_use_fbreg)
up an entire register. For now, just assume that it is
legitimate to make the Dwarf info refer to the whole register which
contains the given subreg. */
rtl = SUBREG_REG (rtl);
rtl = XEXP (rtl, 0);
/* ... fall through ... */