mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 14:39:09 +08:00
2003-06-27 Elena Zannoni <ezannoni@redhat.com>
* dwarfread.c (decode_modified_type): Gag new compiler warning.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2003-06-27 Elena Zannoni <ezannoni@redhat.com>
|
||||||
|
|
||||||
|
* dwarfread.c (decode_modified_type): Gag new compiler warning.
|
||||||
|
|
||||||
2003-06-26 Elena Zannoni <ezannoni@redhat.com>
|
2003-06-26 Elena Zannoni <ezannoni@redhat.com>
|
||||||
|
|
||||||
* dwarf2read.c (dwarf2_locate_sections): Ignore empty .eh_frame
|
* dwarf2read.c (dwarf2_locate_sections): Ignore empty .eh_frame
|
||||||
|
@ -3198,8 +3198,12 @@ decode_modified_type (char *modifiers, unsigned int modcount, int mtype)
|
|||||||
DIE_ID, DIE_NAME); /* FIXME */
|
DIE_ID, DIE_NAME); /* FIXME */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (!(MOD_lo_user <= (unsigned char) modifier
|
if (!(MOD_lo_user <= (unsigned char) modifier))
|
||||||
|
#if 0
|
||||||
|
/* This part of the test would always be true, and it triggers a compiler
|
||||||
|
warning. */
|
||||||
&& (unsigned char) modifier <= MOD_hi_user))
|
&& (unsigned char) modifier <= MOD_hi_user))
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
complaint (&symfile_complaints,
|
complaint (&symfile_complaints,
|
||||||
"DIE @ 0x%x \"%s\", unknown type modifier %u", DIE_ID,
|
"DIE @ 0x%x \"%s\", unknown type modifier %u", DIE_ID,
|
||||||
|
Reference in New Issue
Block a user