* reload1.c (set_label_offsets): Go inside of PARALLELs.

From-SVN: r37409
This commit is contained in:
Jakub Jelinek 2000-11-12 23:52:35 +01:00 committed by Jakub Jelinek
parent 84a0e7b854
commit 0c0ba09c8c
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-11-12 Jakub Jelinek <jakub@redhat.com>
* reload1.c (set_label_offsets): Go inside of PARALLELs.
2000-11-12 Joseph S. Myers <jsm28@cam.ac.uk>
* invoke.texi: Clean up option summary.

View File

@ -2089,11 +2089,12 @@ set_label_offsets (x, insn, initial_p)
set_label_offsets (XEXP (tem, 0), insn, 1);
return;
case PARALLEL:
case ADDR_VEC:
case ADDR_DIFF_VEC:
/* Each of the labels in the address vector must be at their initial
offsets. We want the first field for ADDR_VEC and the second
field for ADDR_DIFF_VEC. */
/* Each of the labels in the parallel or address vector must be
at their initial offsets. We want the first field for PARALLEL
and ADDR_VEC and the second field for ADDR_DIFF_VEC. */
for (i = 0; i < (unsigned) XVECLEN (x, code == ADDR_DIFF_VEC); i++)
set_label_offsets (XVECEXP (x, code == ADDR_DIFF_VEC, i),