public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Nick Clifton <nickc@redhat.com>
To: David Lecomber <david@allinea.com>
Cc: binutils@sources.redhat.com
Subject: Re: XCOFF 64 function address wrong?
Date: Mon, 04 Apr 2005 16:19:00 -0000	[thread overview]
Message-ID: <42516876.2050706@redhat.com> (raw)
In-Reply-To: <1111593934.6362.27.camel@delmo.priv.wark.uk.streamline-computing.com>

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

Hi David,

> This revised fix does indeed resolve the problems: output is now as the
> full 64-bit address.

Bad news - the patch does not work.  Or rather it introduces a compile 
time warning message for some build environments and since we are now 
compiling with -Werror specified this stops the build.

The good news however is that I have a simpler patch which I think 
should do the right thing (tm).

Please could you try it and let me know if it works for you ?

Cheers
   Nick

bfd/ChangeLog
2005-04-04  Nick Clifton  <nickc@redhat.com>

	* coffgen.c (coff_print_symbol): Use fprintf_vma to print a vma.


[-- Attachment #2: coffgen.c.patch --]
[-- Type: text/plain, Size: 2169 bytes --]

Index: bfd/coffgen.c
===================================================================
RCS file: /cvs/src/src/bfd/coffgen.c,v
retrieving revision 1.49
diff -c -3 -p -r1.49 coffgen.c
*** bfd/coffgen.c	22 Mar 2005 16:14:41 -0000	1.49
--- bfd/coffgen.c	4 Apr 2005 16:15:59 -0000
*************** coff_print_symbol (bfd *abfd,
*** 1895,1922 ****
  	  else
  	    val = combined->u.syment.n_value - (unsigned long) root;
  
! #ifndef XCOFF64
! 	  fprintf (file,
! 		   "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%08lx %s",
  		   combined->u.syment.n_scnum,
  		   combined->u.syment.n_flags,
  		   combined->u.syment.n_type,
  		   combined->u.syment.n_sclass,
! 		   combined->u.syment.n_numaux,
! 		   (unsigned long) val,
! 		   symbol->name);
! #else
! 	  /* Print out the wide, 64 bit, symbol value.  */
! 	  fprintf (file,
! 		   "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%016llx %s",
! 		   combined->u.syment.n_scnum,
! 		   combined->u.syment.n_flags,
! 		   combined->u.syment.n_type,
! 		   combined->u.syment.n_sclass,
! 		   combined->u.syment.n_numaux,
! 		   val,
! 		   symbol->name);
! #endif
  
  	  for (aux = 0; aux < combined->u.syment.n_numaux; aux++)
  	    {
--- 1895,1908 ----
  	  else
  	    val = combined->u.syment.n_value - (unsigned long) root;
  
! 	  fprintf (file, "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d)",
  		   combined->u.syment.n_scnum,
  		   combined->u.syment.n_flags,
  		   combined->u.syment.n_type,
  		   combined->u.syment.n_sclass,
! 		   combined->u.syment.n_numaux);
! 	  fprintf_vma (file, val);
! 	  fprintf (file, " %s", symbol->name);
  
  	  for (aux = 0; aux < combined->u.syment.n_numaux; aux++)
  	    {
*************** coff_print_symbol (bfd *abfd,
*** 1995,2004 ****
  	      l++;
  	      while (l->line_number)
  		{
! 		  fprintf (file, "\n%4d : 0x%lx",
! 			   l->line_number,
! 			   ((unsigned long)
! 			    (l->u.offset + symbol->section->vma)));
  		  l++;
  		}
  	    }
--- 1981,1988 ----
  	      l++;
  	      while (l->line_number)
  		{
! 		  fprintf (file, "\n%4d : ", l->line_number);
! 		  fprintf_vma (file, l->u.offset + symbol->section->vma);
  		  l++;
  		}
  	    }

  reply	other threads:[~2005-04-04 16:19 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-09  8:14 David Lecomber
2005-03-09 12:53 ` Nick Clifton
2005-03-09 14:54   ` David Lecomber
2005-03-09 15:39     ` Nick Clifton
2005-03-09 17:52       ` David Lecomber
2005-03-10 10:22         ` Nick Clifton
2005-03-10 21:56           ` David Lecomber
2005-03-11 10:37             ` Nick Clifton
2005-03-24  2:03               ` David Lecomber
2005-04-04 16:19                 ` Nick Clifton [this message]
2005-04-15 11:49                   ` Nick Clifton
2005-05-16 17:07                   ` David Lecomber
2005-05-17 13:04                     ` Nick Clifton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42516876.2050706@redhat.com \
    --to=nickc@redhat.com \
    --cc=binutils@sources.redhat.com \
    --cc=david@allinea.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).