Commit 2a62e439 by David Malcolm Committed by David Malcolm

except.c: Use rtx_sequence

gcc/
2014-08-27  David Malcolm  <dmalcolm@redhat.com>

	* except.c (can_throw_external): Strengthen local "seq" from rtx
	to rtx_sequence *.  Use methods of rtx_sequence.
	(insn_nothrow_p): Likewise.

From-SVN: r214593
parent 292d1dfb
2014-08-27 David Malcolm <dmalcolm@redhat.com>
* except.c (can_throw_external): Strengthen local "seq" from rtx
to rtx_sequence *. Use methods of rtx_sequence.
(insn_nothrow_p): Likewise.
2014-08-27 David Malcolm <dmalcolm@redhat.com>
* dwarf2cfi.c (create_trace_edges): Convert GET_CODE check into a
dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
Use methods of rtx_sequence.
......
......@@ -1877,11 +1877,11 @@ can_throw_external (const_rtx insn)
if (NONJUMP_INSN_P (insn)
&& GET_CODE (PATTERN (insn)) == SEQUENCE)
{
rtx seq = PATTERN (insn);
int i, n = XVECLEN (seq, 0);
rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
int i, n = seq->len ();
for (i = 0; i < n; i++)
if (can_throw_external (XVECEXP (seq, 0, i)))
if (can_throw_external (seq->element (i)))
return true;
return false;
......@@ -1921,11 +1921,11 @@ insn_nothrow_p (const_rtx insn)
if (NONJUMP_INSN_P (insn)
&& GET_CODE (PATTERN (insn)) == SEQUENCE)
{
rtx seq = PATTERN (insn);
int i, n = XVECLEN (seq, 0);
rtx_sequence *seq = as_a <rtx_sequence *> (PATTERN (insn));
int i, n = seq->len ();
for (i = 0; i < n; i++)
if (!insn_nothrow_p (XVECEXP (seq, 0, i)))
if (!insn_nothrow_p (seq->element (i)))
return false;
return true;
......
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