summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 7c0cef58ae3..f7e20998069 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -502,16 +502,16 @@ check_global_declaration_1 (tree decl)
"%q+D defined but not used", decl);
}
-/* Issue appropriate warnings for the global declarations in VEC (of
+/* Issue appropriate warnings for the global declarations in V (of
which there are LEN). */
void
-check_global_declarations (tree *vec, int len)
+check_global_declarations (tree *v, int len)
{
int i;
for (i = 0; i < len; i++)
- check_global_declaration_1 (vec[i]);
+ check_global_declaration_1 (v[i]);
}
/* Emit debugging information for all global declarations in VEC. */