diff options
author | Ruslan Kabatsayev <b7.10110111@gmail.com> | 2019-12-26 00:09:40 +0300 |
---|---|---|
committer | Ruslan Kabatsayev <b7.10110111@gmail.com> | 2019-12-26 00:12:43 +0300 |
commit | 3142e908d01c044b15c750b5427c9ea2f8a486e2 (patch) | |
tree | 2e8ba77fa083020a20a49e165d589c1128efc98f /gdb | |
parent | b68476f1368e49ef9aea08944d51ed2cb991253c (diff) | |
download | binutils-3142e908d01c044b15c750b5427c9ea2f8a486e2.zip binutils-3142e908d01c044b15c750b5427c9ea2f8a486e2.tar.gz binutils-3142e908d01c044b15c750b5427c9ea2f8a486e2.tar.bz2 |
Fix printing ULONGEST variables on x86-32
gdb/ChangeLog
2019-12-26 Ruslan Kabatsayev <b7.10110111@gmail.com>
* dwarf2read.c (is_valid_DW_AT_defaulted)
(is_valid_DW_AT_calling_convention_for_type)
(is_valid_DW_AT_calling_convention_for_subroutine): Fix printing
ULONGEST variables on x86-32.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index acf9106..66a7b9b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2019-12-26 Ruslan Kabatsayev <b7.10110111@gmail.com> + + * dwarf2read.c (is_valid_DW_AT_defaulted) + (is_valid_DW_AT_calling_convention_for_type) + (is_valid_DW_AT_calling_convention_for_subroutine): Fix printing + ULONGEST variables on x86-32. + 2019-12-21 George Barrett <bob@bob131.so> * solib-svr4.c (svr4_handle_solib_event): Add fallback link diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 685d996..2520780 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -15487,7 +15487,7 @@ is_valid_DW_AT_defaulted (ULONGEST value) return true; } - complaint (_("unrecognized DW_AT_defaulted value (%lu)"), value); + complaint (_("unrecognized DW_AT_defaulted value (%s)"), pulongest (value)); return false; } @@ -15867,7 +15867,7 @@ is_valid_DW_AT_calling_convention_for_type (ULONGEST value) default: complaint (_("unrecognized DW_AT_calling_convention value " - "(%lu) for a type"), value); + "(%s) for a type"), pulongest (value)); return false; } } @@ -15893,7 +15893,7 @@ is_valid_DW_AT_calling_convention_for_subroutine (ULONGEST value) default: complaint (_("unrecognized DW_AT_calling_convention value " - "(%lu) for a subroutine"), value); + "(%s) for a subroutine"), pulongest (value)); return false; } } |