diff options
author | Steve Chamberlain <sac@cygnus> | 1992-07-16 15:14:11 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-07-16 15:14:11 +0000 |
commit | 01bbba251b05cf99d864b3c886924caf470ed6c0 (patch) | |
tree | 8a2a32c836c276d1fa679164ffaf54bcb9181fc8 /include | |
parent | b58e918004cd90daee6e48bffa5ae1753a9c674e (diff) | |
download | gdb-01bbba251b05cf99d864b3c886924caf470ed6c0.zip gdb-01bbba251b05cf99d864b3c886924caf470ed6c0.tar.gz gdb-01bbba251b05cf99d864b3c886924caf470ed6c0.tar.bz2 |
More support for relaxing
Diffstat (limited to 'include')
-rw-r--r-- | include/bfd.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/bfd.h b/include/bfd.h index cd9fb44..12390d62 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -106,17 +106,17 @@ typedef enum bfd_format { bfd_format; /* Object file flag values */ -#define NO_FLAGS 0 -#define HAS_RELOC 001 -#define EXEC_P 002 -#define HAS_LINENO 004 -#define HAS_DEBUG 010 -#define HAS_SYMS 020 -#define HAS_LOCALS 040 -#define DYNAMIC 0100 -#define WP_TEXT 0200 -#define D_PAGED 0400 - +#define NO_FLAGS 0x00 +#define HAS_RELOC 0x01 +#define EXEC_P 0x02 +#define HAS_LINENO 0x04 +#define HAS_DEBUG 0x08 +#define HAS_SYMS 0x10 +#define HAS_LOCALS 0x20 +#define DYNAMIC 0x40 +#define WP_TEXT 0x80 +#define D_PAGED 0x100 +#define BFD_IS_RELAXABLE 0x200 /* symbols and relocation */ |