aboutsummaryrefslogtreecommitdiff
path: root/binutils/elfcomm.h
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2012-02-15 18:32:30 +0000
committerCary Coutant <ccoutant@google.com>2012-02-15 18:32:30 +0000
commit74bc605283c5673b8742d3d60804d68d933b56e6 (patch)
treed3abff3108eae3fddb1b803edbf925abe0456669 /binutils/elfcomm.h
parent10010058f222196d4dbc3866f33fbaf0bb5de3e2 (diff)
downloadgdb-74bc605283c5673b8742d3d60804d68d933b56e6.zip
gdb-74bc605283c5673b8742d3d60804d68d933b56e6.tar.gz
gdb-74bc605283c5673b8742d3d60804d68d933b56e6.tar.bz2
* dwarf.c (dwarf_vmatoa64): New function.
(read_and_display_attr_value): Print 8-byte forms as single hex numbers. (process_debug_info): Print type signatures as single hex numbers. * elfcomm.c (byte_get_64): New function. * elfcomm.h (byte_get_64): New function.
Diffstat (limited to 'binutils/elfcomm.h')
-rw-r--r--binutils/elfcomm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/elfcomm.h b/binutils/elfcomm.h
index 3f9727e..2a3c913 100644
--- a/binutils/elfcomm.h
+++ b/binutils/elfcomm.h
@@ -47,6 +47,7 @@ extern elf_vma (*byte_get) (unsigned char *, int);
extern elf_vma byte_get_signed (unsigned char *, int);
extern elf_vma byte_get_little_endian (unsigned char *, int);
extern elf_vma byte_get_big_endian (unsigned char *, int);
+extern void byte_get_64 (unsigned char *, elf_vma *, elf_vma *);
#define BYTE_PUT(field, val) byte_put (field, val, sizeof (field))
#define BYTE_GET(field) byte_get (field, sizeof (field))