diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 71c1e52..ab8f584 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-10-12 Elias Athanasopoulos <eathan@otenet.gr> + + * config/tc-ppc.c (ppc_cleanup): Make 'i' unsigned int. + 2002-10-12 Alexandre Oliva <aoliva@redhat.com> * 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 8f89c77..b071a9e 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); |