Commit bc8b6c98 by Jakub Jelinek Committed by Jakub Jelinek

re PR bootstrap/41397 (RTL checking failure compiling libiberty)

	PR bootstrap/41397
	* dwarf2out.c (mem_loc_descriptor) <case SUBREG>: Recurse
	instead of assuming it has always a REG inside of it.

From-SVN: r151872
parent ca94da48
2009-09-19 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/41397
* dwarf2out.c (mem_loc_descriptor) <case SUBREG>: Recurse
instead of assuming it has always a REG inside of it.
2009-09-18 Gerald Pfeifer <gerald@pfeifer.com>
* config/freebsd.h: Update comment on types.
......
......@@ -11070,8 +11070,8 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode,
rtl = XEXP (rtl, 0);
if (GET_MODE_SIZE (GET_MODE (rtl)) > DWARF2_ADDR_SIZE)
break;
/* ... fall through ... */
mem_loc_result = mem_loc_descriptor (rtl, mode, initialized);
break;
case REG:
/* Whenever a register number forms a part of the description of the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment