From: jakub Date: Sun, 12 Nov 2000 22:52:35 +0000 (+0000) Subject: * reload1.c (set_label_offsets): Go inside of PARALLELs. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4d205416d5c52446ce82ebc0f1a59bc5f75c26d;p=thirdparty%2Fgcc.git * 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8e17c075c645..f67f9374944e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-11-12 Jakub Jelinek + + * reload1.c (set_label_offsets): Go inside of PARALLELs. + 2000-11-12 Joseph S. Myers * invoke.texi: Clean up option summary. diff --git a/gcc/reload1.c b/gcc/reload1.c index fe749293dbfa..5441494aa3db 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),