Commit d42971c4 by Bernd Schmidt Committed by Bernd Schmidt

Avoid GNU C extension

From-SVN: r30671
parent 4254c06c
1999-11-26 Bernd Schmidt <bernds@cygnus.co.uk>
* loop.c (try_copy_prop): Avoid GNU C extension.
1999-11-25 Mark Mitchell <mark@codesourcery.com>
* except.c (init_eh_for_function): But still zero
......
......@@ -9961,7 +9961,12 @@ try_copy_prop (scan_start, loop_top, end, replacement, regno)
insn = next_insn_in_loop (insn, scan_start, end, loop_top))
{
rtx set;
rtx array[3] = { regno_reg_rtx[regno], replacement, insn };
rtx array[3];
array[0] = regno_reg_rtx[regno];
array[1] = replacement;
array[2] = insn;
if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
continue;
set = single_set (insn);
......
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