diff options
author | Timothy Wall <twall@alum.mit.edu> | 2000-04-07 00:58:07 +0000 |
---|---|---|
committer | Timothy Wall <twall@alum.mit.edu> | 2000-04-07 00:58:07 +0000 |
commit | 34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf (patch) | |
tree | 6d15ec296466863723d444148542a94e7624a852 /bfd/bfd-in2.h | |
parent | eb6bd4d38ea6ee7306c538b657c008f77f38cd62 (diff) | |
download | gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.zip gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.tar.gz gdb-34cbe64ecf7ae8c7e029e4af582d98a7910a3bcf.tar.bz2 |
SEC_BLOCK, SEC_CLINK, and C_STATLAB added (TI COFF support).
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index abbf203..68e2db5 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1057,6 +1057,16 @@ typedef struct sec executables or shared objects. */ #define SEC_SHARED 0x4000000 + /* When a section with this flag is being linked, then if the size of + the input section is less than a page, it should not cross a page + boundary. If the size of the input section is one page or more, it + should be aligned on a page boundary. */ +#define SEC_BLOCK 0x8000000 + + /* Conditionally link this section; do not link if there are no + references found to any symbol in the section. */ +#define SEC_CLINK 0x10000000 + /* End of section flags. */ /* Some internal packed boolean fields. */ |