re PR debug/60655 (ICE: output_operand: invalid expression as operand)
PR debug/60655 * dwarf2out.c (mem_loc_descriptor <PLUS>): Return NULL if addend can't be output. From-SVN: r214899
This commit is contained in:
parent
ff050c66b1
commit
5c15381263
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2014-09-04 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR debug/60655
|
||||
* dwarf2out.c (mem_loc_descriptor <PLUS>): Return NULL if addend
|
||||
can't be output.
|
||||
|
||||
2014-09-03 Matthew Fortune <matthew.fortune@imgtec.com>
|
||||
|
||||
* target.def (TARGET_DWARF_FRAME_REG_MODE): New target hook.
|
||||
|
|
|
@ -12699,7 +12699,7 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode,
|
|||
op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
|
||||
VAR_INIT_STATUS_INITIALIZED);
|
||||
if (op1 == 0)
|
||||
break;
|
||||
return NULL;
|
||||
add_loc_descr (&mem_loc_result, op1);
|
||||
add_loc_descr (&mem_loc_result,
|
||||
new_loc_descr (DW_OP_plus, 0, 0));
|
||||
|
|
Loading…
Add table
Reference in a new issue