diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-08-09 03:20:31 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-08-09 03:20:31 +0000 |
commit | 851edbafcca1e31fba6fb354ed07d5e28e5315ab (patch) | |
tree | 69ffcca1f99bcb4a13460b1dbf2c383c3fdd9472 | |
parent | 5dccc1ddaa1d8e543c1113a83df73c6d7e6973ec (diff) | |
download | gdb-851edbafcca1e31fba6fb354ed07d5e28e5315ab.zip gdb-851edbafcca1e31fba6fb354ed07d5e28e5315ab.tar.gz gdb-851edbafcca1e31fba6fb354ed07d5e28e5315ab.tar.bz2 |
* section.c (SEC_SMALL_DATA): Rename from SEC_SHORT.
* bfd-in2.h: Rebuild.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 2 | ||||
-rw-r--r-- | bfd/section.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6a8758c..05a85d5 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +1999-08-08 Ian Lance Taylor <ian@zembu.com> + + * section.c (SEC_SMALL_DATA): Rename from SEC_SHORT. + * bfd-in2.h: Rebuild. + 1999-08-08 Mark Elbrecht <snowball3@bigfoot.com> * libcoff-in.h (struct coff_section_alignment_entry): Define. diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 1399749..2e47b53 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1006,7 +1006,7 @@ typedef struct sec /* This section contains "short" data, and should be placed "near" the GP. */ -#define SEC_SHORT 0x2000000 +#define SEC_SMALL_DATA 0x2000000 /* This section contains data which may be shared with other executables or shared objects. */ diff --git a/bfd/section.c b/bfd/section.c index 654ce23..eb251b4 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -309,7 +309,7 @@ CODE_FRAGMENT . . {* This section contains "short" data, and should be placed . "near" the GP. *} -.#define SEC_SHORT 0x2000000 +.#define SEC_SMALL_DATA 0x2000000 . . {* This section contains data which may be shared with other . executables or shared objects. *} |