From 156e86f32da1e2f8751f308bbb3bc83fe759d125 Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Mon, 11 Feb 2002 02:17:39 +0000 Subject: 2002-02-10 Daniel Jacobowitz * coff-rs6000.c (xcoff_generate_rtinit): Silence uninitialized variable warnings. * elf32-sh.c (sh_elf_relax_section): Silence signed/unsigned comparison warning. * trad-core.c (trad_unix_core_file_p): Silence pointer/integer cast warnings for the common case. --- bfd/trad-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bfd/trad-core.c') diff --git a/bfd/trad-core.c b/bfd/trad-core.c index aed0b50d1f..e27cd35e86 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -211,7 +211,7 @@ trad_unix_core_file_p (abfd) 0 is at the place pointed to by u_ar0 (by setting the vma of the start of the section to -u_ar0). GDB uses this info to locate the regs, using minor trickery to get around the offset-or-absolute-addr problem. */ - core_regsec (abfd)->vma = - (bfd_vma) u.u_ar0; + core_regsec (abfd)->vma = - (bfd_vma) (unsigned long) u.u_ar0; core_datasec (abfd)->filepos = NBPG * UPAGES; core_stacksec (abfd)->filepos = (NBPG * UPAGES) + NBPG * u.u_dsize -- cgit v1.2.1