diff options
| author | Jim Blandy <jimb@codesourcery.com> | 2006-01-17 22:30:29 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@codesourcery.com> | 2006-01-17 22:30:29 +0000 |
| commit | 4e38b3864ce96e88108671bd271c71ee461e9404 (patch) | |
| tree | e67a318d3dcc422bb30eeffc3137a04a32922a1b /gdb/symtab.h | |
| parent | 1193688db202f828c9e3331ed42e2362004cacb8 (diff) | |
| download | binutils-4e38b3864ce96e88108671bd271c71ee461e9404.tar.gz binutils-4e38b3864ce96e88108671bd271c71ee461e9404.tar.bz2 binutils-4e38b3864ce96e88108671bd271c71ee461e9404.zip | |
gdb/ChangeLog:
2006-01-17 Jim Blandy <jimb@redhat.com>
* symtab.h (struct general_symbol_info): Use gdb_byte for
value.bytes.
* stabsread.c (define_symbol): Use gdb_byte for the buffer holding
a floating-point constant's value.
* dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
to char *.
* findvar.c (read_var_value): Eliminate needless temporary.
Diffstat (limited to 'gdb/symtab.h')
| -rw-r--r-- | gdb/symtab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 6c17037c416..840478ad5db 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -110,7 +110,7 @@ struct general_symbol_info struct block *block; - char *bytes; + gdb_byte *bytes; CORE_ADDR address; |
