* c-lang.c (finish_file): Make I unsigned to eliminate warning.

From-SVN: r47006
This commit is contained in:
Richard Kenner 2001-11-14 11:33:11 +00:00 committed by Richard Kenner
parent 586dbaaf45
commit b1bba9c0cb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Nov 14 06:37:54 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* c-lang.c (finish_file): Make I unsigned to eliminate warning.
2001-11-13 Jeff Sturm <jsturm@one-point.com>
* doc/install.texi (sparc-*-linux*): Mention requirements for

View File

@ -265,7 +265,7 @@ defer_fn (fn)
void
finish_file ()
{
int i;
unsigned int i;
for (i = 0; i < VARRAY_ACTIVE_SIZE (deferred_fns); i++)
/* Don't output the same function twice. We may run into such