summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 2de3fcbda36..d43a4bf59aa 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -2504,7 +2504,7 @@ output_used_types (void)
qsort (VEC_address (tree, types), VEC_length (tree, types),
sizeof (tree), output_types_sort);
- for (i = 0; VEC_iterate (tree, types, i, type); i++)
+ FOR_EACH_VEC_ELT (tree, types, i, type)
debug_queue_symbol (type);
VEC_free (tree, heap, types);