diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-11 08:03:44 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-11 08:03:44 +0000 |
| commit | bbf077af2c8e47092099a7220295d51c59e408eb (patch) | |
| tree | ae6fd9331ab2473886a0cfbd29c30f4f140b2a04 | |
| parent | 9027e9d18d8fa48bc308c8734dd98ab1a1261ecb (diff) | |
| download | ppe42-gcc-bbf077af2c8e47092099a7220295d51c59e408eb.tar.gz ppe42-gcc-bbf077af2c8e47092099a7220295d51c59e408eb.zip | |
* i386/djgpp.h (ASM_OUTPUT_ALIGNED_BSS): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28666 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/djgpp.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 03b3c7c9c47..9797b5ae492 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +1999-08-01 Mark Elbrecht <snowball3@bigfoot.com> + + * i386/djgpp.h (ASM_OUTPUT_ALIGNED_BSS): Define. + 1999-08-11 Richard Earnshaw (rearnsha@arm.com) * emit-rtl.c (mark_reg_pointer): Don't increase the alignment of diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 4dc1471598f..4ddd90faf58 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -162,6 +162,11 @@ dtor_section () \ #define ASM_OUTPUT_ALIGN(FILE,LOG) \ if ((LOG) != 0) fprintf ((FILE), "\t.p2align %d\n", LOG) +/* This is how to output a global symbol in the BSS section. */ +#undef ASM_OUTPUT_ALIGNED_BSS +#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ + asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN)) + /* djgpp has atexit (). */ #undef HAVE_ATEXIT #define HAVE_ATEXIT |

