This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: committed: Ada updates


Arnaud Charlet <charlet@ACT-Europe.FR> writes:

>> only to fail later on with another error:
>> 
>> /vol/gnu/src/gcc/gcc-dist/gcc/sdbout.c: In function `sdbout_finish':
>> /vol/gnu/src/gcc/gcc-dist/gcc/sdbout.c:1465: warning: comparison between signed and unsigned

Argh, this is yet another thing I fixed in the 3.4 iteration (not yet
applied) of that patch but that got lost somehow when I redid it for
mainline.

Please try the appended:

zw

===================================================================
Index: sdbout.c
--- sdbout.c	16 Feb 2004 18:55:01 -0000	1.87
+++ sdbout.c	18 Feb 2004 17:43:54 -0000
@@ -1460,7 +1460,7 @@ sdbout_global_decl (tree decl)
 static void
 sdbout_finish (const char *main_filename ATTRIBUTE_UNUSED)
 {
-  int i;
+  size_t i;
 
   for (i = 0; i < VARRAY_ACTIVE_SIZE (deferred_global_decls); i++)
     sdbout_symbol (VARRAY_TREE (deferred_global_decls, i), 0);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]