mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-14 08:43:27 +08:00
* readelf.c (get_group_flags): Return empty string when flags zero.
Add space in other returned values. (process_section_groups): Adjust format string.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2010-02-19 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* readelf.c (get_group_flags): Return empty string when flags zero.
|
||||
Add space in other returned values.
|
||||
(process_section_groups): Adjust format string.
|
||||
|
||||
2010-02-18 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||
|
||||
* readelf.c (arm_attr_tag_Advanced_SIMD_arch): Add description of
|
||||
|
@ -4633,6 +4633,9 @@ get_group_flags (unsigned int flags)
|
||||
static char buff[32];
|
||||
switch (flags)
|
||||
{
|
||||
case 0:
|
||||
return "";
|
||||
|
||||
case GRP_COMDAT:
|
||||
return "COMDAT ";
|
||||
|
||||
|
Reference in New Issue
Block a user