diff options
author | Jakub Jelinek <jakub@redhat.com> | 2000-11-12 23:52:35 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2000-11-12 23:52:35 +0100 |
commit | 0c0ba09c8ceed1a576bef1d31d107f1763a1c5a7 (patch) | |
tree | fafc6c02eb7adf49135171577d32be3ec4b22633 /gcc | |
parent | 84a0e7b85450895e4b58b4b00e49a24e4f78877d (diff) | |
download | gcc-0c0ba09c8ceed1a576bef1d31d107f1763a1c5a7.zip gcc-0c0ba09c8ceed1a576bef1d31d107f1763a1c5a7.tar.gz gcc-0c0ba09c8ceed1a576bef1d31d107f1763a1c5a7.tar.bz2 |
* reload1.c (set_label_offsets): Go inside of PARALLELs.
From-SVN: r37409
Diffstat (limited to 'gcc')
-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 8e17c07..f67f937 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 fe74929..5441494 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), |