aboutsummaryrefslogtreecommitdiff
path: root/gcc/reload1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r--gcc/reload1.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c
index 04cf212..2a9a562 100644
--- a/gcc/reload1.c
+++ b/gcc/reload1.c
@@ -3888,9 +3888,10 @@ set_initial_label_offsets (void)
{
memset (offsets_known_at, 0, num_labels);
- for (rtx_insn_list *x = forced_labels; x; x = x->next ())
- if (x->insn ())
- set_label_offsets (x->insn (), NULL, 1);
+ unsigned int i;
+ rtx_insn *insn;
+ FOR_EACH_VEC_SAFE_ELT (forced_labels, i, insn)
+ set_label_offsets (insn, NULL, 1);
for (rtx_insn_list *x = nonlocal_goto_handler_labels; x; x = x->next ())
if (x->insn ())