From 0c0ba09c8ceed1a576bef1d31d107f1763a1c5a7 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sun, 12 Nov 2000 23:52:35 +0100 Subject: [PATCH] * reload1.c (set_label_offsets): Go inside of PARALLELs. From-SVN: r37409 --- gcc/ChangeLog | 4 ++++ 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 + + * 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 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), -- 2.30.2