Commit da4a9479 by Alexandre Oliva Committed by Alexandre Oliva

re PR debug/41276 (Segmentation fault in lookup_page_table_entry)

PR debug/41276
PR debug/41307
* cselib.c (cselib_expand_value_rtx_1): Don't return copy of
invalid subreg.

From-SVN: r151523
parent 713e2ea6
2009-09-08 Alexandre Oliva <aoliva@redhat.com>
PR debug/41276
PR debug/41307
* cselib.c (cselib_expand_value_rtx_1): Don't return copy of
invalid subreg.
2009-09-08 Alexandre Oliva <aoliva@redhat.com>
* configure: Rebuilt with modified libtool.m4.
2009-09-08 Alexandre Oliva <aoliva@redhat.com>
......
......@@ -1165,12 +1165,12 @@ cselib_expand_value_rtx_1 (rtx orig, struct expand_value_data *evd,
scopy = simplify_gen_subreg (GET_MODE (orig), subreg,
GET_MODE (SUBREG_REG (orig)),
SUBREG_BYTE (orig));
if (scopy == NULL
|| (GET_CODE (scopy) == SUBREG
&& !REG_P (SUBREG_REG (scopy))
&& !MEM_P (SUBREG_REG (scopy))
&& (REG_P (SUBREG_REG (orig))
|| MEM_P (SUBREG_REG (orig)))))
if ((scopy == NULL
|| (GET_CODE (scopy) == SUBREG
&& !REG_P (SUBREG_REG (scopy))
&& !MEM_P (SUBREG_REG (scopy))))
&& (REG_P (SUBREG_REG (orig))
|| MEM_P (SUBREG_REG (orig))))
return shallow_copy_rtx (orig);
return scopy;
}
......
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