diff options
author | Alan Modra <amodra@gmail.com> | 2001-08-17 16:01:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-08-17 16:01:49 +0000 |
commit | 23fe39dfb99274ef30821e32a42e5094433422e7 (patch) | |
tree | 68dea25361bfb2878b9e965894702924e84fee8a /gas/read.c | |
parent | c0846b239705bd8528996e60dbabe16344410b2d (diff) | |
download | ppe42-binutils-23fe39dfb99274ef30821e32a42e5094433422e7.tar.gz ppe42-binutils-23fe39dfb99274ef30821e32a42e5094433422e7.zip |
* ecoff.c (ecoff_frob_symbol): Remove casts from bfd_get_gp_size.
(ecoff_build_symbols): Likewise.
* read.c (s_lcomm_internal): Fix signed/unsigned warning.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/read.c b/gas/read.c index 1e13698f9d..17bd4564ea 100644 --- a/gas/read.c +++ b/gas/read.c @@ -1988,7 +1988,7 @@ s_lcomm_internal (needs_align, bytes_p) || OUTPUT_FLAVOR == bfd_target_elf_flavour) { /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */ - if (temp <= bfd_get_gp_size (stdoutput)) + if ((unsigned) temp <= bfd_get_gp_size (stdoutput)) { bss_seg = subseg_new (".sbss", 1); seg_info (bss_seg)->bss = 1; |