Apply patch from binutils to demangle local-source names. Binutils

Wed Jun  4 21:52:17 2008  Søren Sandmann  <sandmann@redhat.com>

	* demangle.c: Apply patch from binutils to demangle local-source
	names. Binutils changelog:

	2007-05-05  Geoffrey Keating  <geoffk@apple.com>

		* cp-demangle.c (d_name): Detect local-source-name.
		(d_prefix): Likewise.
		(d_unqualified_name): Implement local-source-name.

	* sysprof.c: Update copyright statement
	


svn path=/trunk/; revision=434
This commit is contained in:
Geoffrey Keating
2008-06-05 02:09:33 +00:00
committed by Søren Sandmann Pedersen
parent 155221f446
commit e11dfce31f
5 changed files with 60 additions and 11 deletions

View File

@ -651,11 +651,11 @@ elf_parser_get_text_offset (ElfParser *parser)
static gchar *
make_hex_string (const guchar *data, int n_bytes)
{
GString *string = g_string_new (NULL);
const char hex_digits[] = {
static const char hex_digits[] = {
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
};
GString *string = g_string_new (NULL);
int i;
for (i = 0; i < n_bytes; ++i)