Avoid GNU C extension
From-SVN: r30671
This commit is contained in:
parent
4254c06cca
commit
d42971c45e
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue