2005-07-25 Manfred Hollstein * calls.c (store_one_arg): Fix unsigned comparison warning. diff -rup -x CVS -x RCS -x '*.o' -x '*.info*' -x '*.elc' -x '*.dvi' -x '*.orig' -x '*~' -x version.el gcc-20050725.orig/gcc/calls.c gcc-20050725/gcc/calls.c --- gcc-20050725.orig/gcc/calls.c 2005-07-25 12:00:38.386535155 +0200 +++ gcc-20050725/gcc/calls.c 2005-07-25 17:23:19.385482931 +0200 @@ -4098,7 +4098,7 @@ store_one_arg (struct arg_data *arg, rtx #ifdef ARGS_GROW_DOWNWARD i = -i - arg->locate.size.constant; #endif - for (k = 0; k < arg->locate.size.constant; k++) + for (k = 0; k < (unsigned int) arg->locate.size.constant; k++) if (i + k < stored_args_map->n_bits && TEST_BIT (stored_args_map, i + k)) {