mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +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>
|
2010-02-18 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||||
|
|
||||||
* readelf.c (arm_attr_tag_Advanced_SIMD_arch): Add description of
|
* 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];
|
static char buff[32];
|
||||||
switch (flags)
|
switch (flags)
|
||||||
{
|
{
|
||||||
|
case 0:
|
||||||
|
return "";
|
||||||
|
|
||||||
case GRP_COMDAT:
|
case GRP_COMDAT:
|
||||||
return "COMDAT ";
|
return "COMDAT ";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user