diff options
author | Tom Tromey <tromey@redhat.com> | 2013-03-14 20:26:19 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-03-14 20:26:19 +0000 |
commit | dccee2de163c22e9610e9103814d4b93768dd6aa (patch) | |
tree | 9ec350d17410647e56d95dd2da419d194e444cd1 /gdb/objfiles.h | |
parent | cc0ea93c7531fe59c4d7d2b01b01acb9bbe0b7fd (diff) | |
download | gdb-dccee2de163c22e9610e9103814d4b93768dd6aa.zip gdb-dccee2de163c22e9610e9103814d4b93768dd6aa.tar.gz gdb-dccee2de163c22e9610e9103814d4b93768dd6aa.tar.bz2 |
* gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
New fields.
(get_file_crc): Move from symfile.c.
(gdb_bfd_crc): New function.
* gdb_bfd.h (gdb_bfd_crc): Declare.
* objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
* symfile.c (get_file_crc): Move to gdb_bfd.c.
(separate_debug_file_exists): Use gdb_bfd_crc.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index cbfbed2..9646bbd 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -259,11 +259,6 @@ struct objfile long mtime; - /* Cached 32-bit CRC as computed by gnu_debuglink_crc32. CRC32 is valid - iff CRC32_P. */ - unsigned long crc32; - int crc32_p; - /* Obstack to hold objects that should be freed when we load a new symbol table from this object file. */ |