[Committed] Add .zdebug to the list of known sections in tc-h8300
Nick Clifton
nickc@redhat.com
Wed May 19 10:47:00 GMT 2010
More information about the Binutils mailing list
Wed May 19 10:47:00 GMT 2010
- Previous message (by thread): Linker script and dependency search path
- Next message (by thread): [patch ld]: Adjust for i?86-w64-mingw* autoimport and rdata merge to data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi Guys, I am applying the patch below to fix a failure in the binutils testsuite for the h8300-elf port. It was failing to assemble the dw2-compressed.S test file because it did not recognise the .zdebug_abbrev section as one whose section flags are well known. Cheers Nick gas/ChangeLog 2010-05-19 Nick Clifton <nickc@redhat.com> * config/tc-h8300.c (h8300_elf_section): Add .zdebug to the list of known section prefixes. Index: gas/config/tc-h8300.c =================================================================== RCS file: /cvs/src/src/gas/config/tc-h8300.c,v retrieving revision 1.63 diff -c -3 -p -r1.63 tc-h8300.c *** gas/config/tc-h8300.c 13 Jan 2010 14:08:52 -0000 1.63 --- gas/config/tc-h8300.c 19 May 2010 10:44:05 -0000 *************** static void *** 146,152 **** h8300_elf_section (int push) { static const char * known_data_sections [] = { ".rodata", ".tdata", ".tbss" }; ! static const char * known_data_prefixes [] = { ".debug", ".gnu.warning" }; char * saved_ilp = input_line_pointer; char * name; --- 146,152 ---- h8300_elf_section (int push) { static const char * known_data_sections [] = { ".rodata", ".tdata", ".tbss" }; ! static const char * known_data_prefixes [] = { ".debug", ".zdebug", ".gnu.warning" }; char * saved_ilp = input_line_pointer; char * name;
- Previous message (by thread): Linker script and dependency search path
- Next message (by thread): [patch ld]: Adjust for i?86-w64-mingw* autoimport and rdata merge to data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list