summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSterling Augustine <saugustine@google.com>2013-02-26 10:39:38 -0800
committerSterling Augustine <saugustine@google.com>2013-02-26 10:39:38 -0800
commit86c44f1ffc44c85d9ae17aac8918cbafd7ccfbd2 (patch)
treee95b2504c5643c96c7c377a08b6ec18f47b5ccac
parent8f18d549713fb22ce9243b270fefc7dc4ef181b0 (diff)
downloadgcc-sterling/google-accel-tables-4_7.tar.gz
hashes count and bucket count are 32 bits.sterling/google-accel-tables-4_7
-rw-r--r--gcc/dwarf2out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 0ac402daa96..634424543c4 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -24391,8 +24391,8 @@ typedef struct accel_table {
uint32_t magic;
uint16_t version;
uint16_t hash_function;
- uint16_t bucket_count;
- uint16_t hashes_count;
+ uint32_t bucket_count;
+ uint32_t hashes_count;
uint32_t header_data_len;
accel_table_header_data header_data;