+2020-08-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
+
+ * readelf.c (get_msp430x_section_type_name): Rename to ...
+ (get_msp430_section_type_name): ... this.
+ (get_section_type_name): Use get_msp430_section_type_name.
+ (display_msp430x_attribute): Rename to ...
+ (display_msp430_attribute): ... this.
+ (process_arch_specific): Use display_msp430_attribute.
+
2020-08-27 John David Anglin <danglin@gcc.gnu.org>
PR 26356
}
static const char *
-get_msp430x_section_type_name (unsigned int sh_type)
+get_msp430_section_type_name (unsigned int sh_type)
{
switch (sh_type)
{
result = get_tic6x_section_type_name (sh_type);
break;
case EM_MSP430:
- result = get_msp430x_section_type_name (sh_type);
+ result = get_msp430_section_type_name (sh_type);
break;
case EM_NFP:
result = get_nfp_section_type_name (sh_type);
}
static unsigned char *
-display_msp430x_attribute (unsigned char * p,
+display_msp430_attribute (unsigned char * p,
const unsigned char * const end)
{
unsigned int val;
case EM_MSP430:
return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
- display_msp430x_attribute,
+ display_msp430_attribute,
display_msp430_gnu_attribute);
case EM_RISCV: