This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 3/4] GDB: Add support for 24 bit addresses
- From: Tom Tromey <tom at tromey dot com>
- To: John Darrington <john at darrington dot wattle dot id dot au>
- Cc: gdb-patches at sourceware dot org
- Date: Fri, 07 Sep 2018 16:04:24 -0600
- Subject: Re: [PATCH 3/4] GDB: Add support for 24 bit addresses
- References: <20180829141845.26378-1-john@darrington.wattle.id.au> <20180829141845.26378-4-john@darrington.wattle.id.au>
>>>>> "John" == John Darrington <john@darrington.wattle.id.au> writes:
John> * gdb/dwarf2-frame.c (encoding_for_size): Deal with case 3.
John> (read_encoded_value): Deal with case DW_EH_PE_udata3
This is ok; pending the dwarf2.h patch of course.
John> default:
John> - internal_error (__FILE__, __LINE__, _("Unsupported address size"));
John> + internal_error (__FILE__, __LINE__, _("Unsupported address size %d"), size);
Thanks for doing that.
Tom