diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-10 10:55:58 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-10 10:55:58 +0000 |
commit | a7e831079363e3bb45f3172f6e59ba48e335682b (patch) | |
tree | ee4324eac9a9d66f189fab60498ec42b8226b7fc /gnu/usr.bin/binutils/bfd/nlm-target.h | |
parent | 467cb0a471d13c5186a6ee166e60b47c30da64e9 (diff) |
Bring Cygnus versions into the trunk, keeping our local patches
Diffstat (limited to 'gnu/usr.bin/binutils/bfd/nlm-target.h')
-rw-r--r-- | gnu/usr.bin/binutils/bfd/nlm-target.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/usr.bin/binutils/bfd/nlm-target.h b/gnu/usr.bin/binutils/bfd/nlm-target.h index 58e6a965f73..cdd3fa8b22e 100644 --- a/gnu/usr.bin/binutils/bfd/nlm-target.h +++ b/gnu/usr.bin/binutils/bfd/nlm-target.h @@ -64,11 +64,11 @@ const bfd_target TARGET_BIG_SYM = /* flavour: general indication about file */ bfd_target_nlm_flavour, - /* byteorder_big_p: data is big endian */ - true, + /* byteorder: data is big endian */ + BFD_ENDIAN_BIG, - /* header_byteorder_big_p: header is also big endian */ - true, + /* header_byteorder: header is also big endian */ + BFD_ENDIAN_BIG, /* object_flags: mask of all file flags */ (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS @@ -150,11 +150,11 @@ const bfd_target TARGET_LITTLE_SYM = /* flavour: general indication about file */ bfd_target_nlm_flavour, - /* byteorder_big_p: data is big endian */ - false, /* Nope -- this one's little endian */ + /* byteorder: data is little endian */ + BFD_ENDIAN_LITTLE, - /* header_byteorder_big_p: header is also big endian */ - false, /* Nope -- this one's little endian */ + /* header_byteorder: header is also little endian */ + BFD_ENDIAN_LITTLE, /* object_flags: mask of all file flags */ (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS |