mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
* config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS): Make single bit
field unsigned.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2006-05-02 Ben Elliston <bje@au.ibm.com>
|
2006-05-02 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
|
* config/obj-elf.h (ELF_TARGET_SYMBOL_FIELDS): Make single bit
|
||||||
|
field unsigned.
|
||||||
|
|
||||||
* sb.h (sb_list_vector): Move to sb.c.
|
* sb.h (sb_list_vector): Move to sb.c.
|
||||||
* sb.c (free_list): Use type of sb_list_vector directly.
|
* sb.c (free_list): Use type of sb_list_vector directly.
|
||||||
(sb_build): Fix off-by-one error in assertion about `size'.
|
(sb_build): Fix off-by-one error in assertion about `size'.
|
||||||
|
@ -83,7 +83,7 @@ struct elf_obj_sy
|
|||||||
#define OBJ_SYMFIELD_TYPE struct elf_obj_sy
|
#define OBJ_SYMFIELD_TYPE struct elf_obj_sy
|
||||||
|
|
||||||
/* Symbol fields used by the ELF back end. */
|
/* Symbol fields used by the ELF back end. */
|
||||||
#define ELF_TARGET_SYMBOL_FIELDS int local:1;
|
#define ELF_TARGET_SYMBOL_FIELDS unsigned int local:1;
|
||||||
|
|
||||||
/* Don't change this; change ELF_TARGET_SYMBOL_FIELDS instead. */
|
/* Don't change this; change ELF_TARGET_SYMBOL_FIELDS instead. */
|
||||||
#ifndef TARGET_SYMBOL_FIELDS
|
#ifndef TARGET_SYMBOL_FIELDS
|
||||||
|
Reference in New Issue
Block a user