Commit 0c0ba09c by Jakub Jelinek Committed by Jakub Jelinek

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

From-SVN: r37409
parent 84a0e7b8
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.
......
......@@ -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),
......
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