diff options
Diffstat (limited to 'gcc/config/rs6000/rs6000.c')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 2621af9107f..89e0127a479 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -24602,7 +24602,7 @@ no_previous_def (tree function_name) branch_island *bi; unsigned ix; - for (ix = 0; VEC_iterate (branch_island, branch_islands, ix, bi); ix++) + FOR_EACH_VEC_ELT (branch_island, branch_islands, ix, bi) if (function_name == bi->function_name) return 0; return 1; @@ -24617,7 +24617,7 @@ get_prev_label (tree function_name) branch_island *bi; unsigned ix; - for (ix = 0; VEC_iterate (branch_island, branch_islands, ix, bi); ix++) + FOR_EACH_VEC_ELT (branch_island, branch_islands, ix, bi) if (function_name == bi->function_name) return bi->label_name; return NULL_TREE; |