diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1999-08-04 11:27:20 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1999-08-04 07:27:20 -0400 |
commit | f0ce07b87a841fcffce661dbb91aaa65f3f701c7 (patch) | |
tree | b31fbf85f19921a6cd269a8b93f612aad554a06a | |
parent | fb2000b29394b9b65af1b2568a3384fdf3b09702 (diff) | |
download | gcc-f0ce07b87a841fcffce661dbb91aaa65f3f701c7.zip gcc-f0ce07b87a841fcffce661dbb91aaa65f3f701c7.tar.gz gcc-f0ce07b87a841fcffce661dbb91aaa65f3f701c7.tar.bz2 |
* linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
From-SVN: r28496
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/linux.h | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6b812d4..16e7c05 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 2 19:18:44 1999 Jason Merrill <jason@yorick.cygnus.com> + + * linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define. + 1999-08-04 Mark Elbrecht <snowball3@bigfoot.com> * config/i386/djgpp.h (BSS_SECTION_ASM_OP): Define. diff --git a/gcc/config/linux.h b/gcc/config/linux.h index b619d01..ae0ec4a 100644 --- a/gcc/config/linux.h +++ b/gcc/config/linux.h @@ -1,5 +1,5 @@ /* Definitions for Linux-based GNU systems with ELF format - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. Contributed by Eric Youngdale. Modified for stabs-in-ELF by H.J. Lu (hjl@lucon.org). @@ -113,3 +113,6 @@ Boston, MA 02111-1307, USA. */ %{p:-lgmon -lc_p} %{pg:-lgmon -lc_p} \ %{!p:%{!pg:%{!g*:-lc} %{g*:-lg}}}}" #endif + +/* Define this so we can compile MS code for use with WINE. */ +#define HANDLE_PRAGMA_PACK_PUSH_POP |