From: Alan Modra Date: Sat, 12 Oct 2002 10:23:17 +0000 (+0000) Subject: * config/tc-ppc.c (ppc_cleanup): Make 'i' unsigned int. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=49181a6af760bb2e973a9984b85698e082ac9583;p=binutils-gdb.git * config/tc-ppc.c (ppc_cleanup): Make 'i' unsigned int. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 71c1e521f24..ab8f58427b2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-10-12 Elias Athanasopoulos + + * config/tc-ppc.c (ppc_cleanup): Make 'i' unsigned int. + 2002-10-12 Alexandre Oliva * config/tc-mips.h (mips_relax_frag): Take segment as argument. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 8f89c77ff0c..b071a9ea693 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1323,7 +1323,7 @@ ppc_cleanup () asection *seg = now_seg; subsegT subseg = now_subseg; asection *apuinfo_secp = (asection *) NULL; - int i; + unsigned int i; /* Create the .PPC.EMB.apuinfo section. */ apuinfo_secp = subseg_new (".PPC.EMB.apuinfo", 0);