diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-02-05 23:57:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-02-05 23:57:39 +0000 |
commit | cbe75cb664ec5365a378206cda10fce903300e21 (patch) | |
tree | d87201023e7e4af6b6decf091c1377907460035a /bfd/bfd-in2.h | |
parent | 1a4dd30e5491edebb953b7e9725ff7c9b634c1a4 (diff) | |
download | gdb-cbe75cb664ec5365a378206cda10fce903300e21.zip gdb-cbe75cb664ec5365a378206cda10fce903300e21.tar.gz gdb-cbe75cb664ec5365a378206cda10fce903300e21.tar.bz2 |
* archures.c (bfd_mach_i960_hx): Define.
* bfd-in2.h: Rebuild.
* cpu-i960.c (scan_960_mach): Accept machine "hx".
(MATRIX): Expand entries for HX.
(arch_info_struct): Add i960:hx entry.
* bout.c (b_out_set_arch_mach): Handle bfd_mach_i960_hx.
* coffcode.h (coff_set_arch_mach_hook): Handle F_I960HX.
(coff_set_flags): Handle bfd_mach_i960_hx.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 224edc4..4e4aa86 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1106,10 +1106,12 @@ enum bfd_architecture /* start-sanitize-i960xl */ #define bfd_mach_i960_xl 7 /* end-sanitize-i960xl */ +#define bfd_mach_i960_hx 8 bfd_arch_a29k, /* AMD 29000 */ bfd_arch_sparc, /* SPARC */ #define bfd_mach_sparc 1 + /* The difference between v8plus and v9 is that v9 is a true 64 bit env. */ #define bfd_mach_sparc_v8plus 2 #define bfd_mach_sparc_v8plusa 3 /* with ultrasparc add'ns */ #define bfd_mach_sparc_v9 4 @@ -1797,6 +1799,10 @@ typedef struct symbol_cache_entry /* Symbol is from dynamic linking information. */ #define BSF_DYNAMIC 0x8000 + /* The symbol denotes a data object. Used in ELF, and perhaps + others someday. */ +#define BSF_OBJECT 0x10000 + flagword flags; /* A pointer to the section to which this symbol is |