diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-11 08:14:51 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-11 08:14:51 +0000 |
| commit | fc744d14c3c122359dd40c41eaaeee5c781df6cd (patch) | |
| tree | edef5dc7064eb4d16c110be212f945011cebd44f | |
| parent | bbf077af2c8e47092099a7220295d51c59e408eb (diff) | |
| download | ppe42-gcc-fc744d14c3c122359dd40c41eaaeee5c781df6cd.tar.gz ppe42-gcc-fc744d14c3c122359dd40c41eaaeee5c781df6cd.zip | |
* i386/cygwin.h (ASM_OUTPUT_ALIGNED_BSS): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28667 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/i386/cygwin.h | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9797b5ae492..15aae859e1f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,8 @@ -1999-08-01 Mark Elbrecht <snowball3@bigfoot.com> +Wed Aug 11 02:13:26 1999 Mumit Khan <khan@xraylith.wisc.edu> + + * i386/cygwin.h (ASM_OUTPUT_ALIGNED_BSS): Define. + +1999-08-11 Mark Elbrecht <snowball3@bigfoot.com> * i386/djgpp.h (ASM_OUTPUT_ALIGNED_BSS): Define. diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h index 11518ff49bb..d34a963eacc 100644 --- a/gcc/config/i386/cygwin.h +++ b/gcc/config/i386/cygwin.h @@ -459,6 +459,11 @@ do { \ #define ASM_OUTPUT_EXTERNAL_LIBCALL(FILE, FUN) \ i386_pe_declare_function_type (FILE, XSTR (FUN, 0), 1) +/* This says out to put 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)) + /* Output function declarations at the end of the file. */ #define ASM_FILE_END(FILE) \ i386_pe_asm_file_end (FILE) |

