This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: more long long problems "objdump --debugging"
- From: Greg McGary <greg at mcgary dot org>
- To: Andreas Schwab <schwab at suse dot de>
- Cc: binutils at sourceware dot org, amodra at bigpond dot net dot au
- Date: Thu, 10 Jan 2008 15:38:49 -0800
- Subject: Re: more long long problems "objdump --debugging"
- References: <47858D29.70500@mcgary.org> <je7iiif34u.fsf@sykes.suse.de>
Andreas Schwab wrote:
Greg McGary <greg@mcgary.org> writes:
stabs.c uses bfd_vma to hold enum members. That doesn't work when bfd_vma
is 32-bits but the enum member needs 64.
Enumeration constants can only be in the range of an int.
This is a GNU extension. The only complaint comes with -pedantic:
warning: ISO C restricts enumerator values to range of 'int'
If GCC generates debug info for enumerator constants bigger than int,
binutils ought to support them.
G