diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-27 19:52:22 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-27 19:52:22 +0000 |
commit | b11b1f88bd8c59e136e0ec10fbf5ea7f30d0ded6 (patch) | |
tree | 0595cd7793c646c3ec2a0edeb0a44a4d07850915 /gdb/dwarf2read.c | |
parent | 8344e389dcb05ca85547b483fda3f162749c4623 (diff) | |
download | gdb-b11b1f88bd8c59e136e0ec10fbf5ea7f30d0ded6.zip gdb-b11b1f88bd8c59e136e0ec10fbf5ea7f30d0ded6.tar.gz gdb-b11b1f88bd8c59e136e0ec10fbf5ea7f30d0ded6.tar.bz2 |
gdb/
Format the code for the next patch.
* dwarf2read.c (struct mapped_index): Include delimiting newlines.
* utils.c (strcmp_iw_ordered): Reformat the code for the next patch.
New variables c1 and c2.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index e0a4675..0ca9532 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -151,14 +151,19 @@ struct mapped_index { /* The total length of the buffer. */ off_t total_size; + /* A pointer to the address table data. */ const gdb_byte *address_table; + /* Size of the address table data in bytes. */ offset_type address_table_size; + /* The symbol table, implemented as a hash table. */ const offset_type *symbol_table; + /* Size in slots, each slot is 2 offset_types. */ offset_type symbol_table_slots; + /* A pointer to the constant pool. */ const char *constant_pool; }; |