diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-12 22:52:35 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-12 22:52:35 +0000 |
commit | e4d205416d5c52446ce82ebc0f1a59bc5f75c26d (patch) | |
tree | fafc6c02eb7adf49135171577d32be3ec4b22633 | |
parent | 070efd02b03f5582fbae48515fce3db8da36a942 (diff) | |
download | gcc-e4d205416d5c52446ce82ebc0f1a59bc5f75c26d.tar.gz |
* reload1.c (set_label_offsets): Go inside of PARALLELs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37409 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/reload1.c | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8e17c075c64..f67f9374944 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/reload1.c b/gcc/reload1.c index fe749293dbf..5441494aa3d 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -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), |