This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
win32 typo fix
- To: egcs-patches at cygnus dot com
- Subject: win32 typo fix
- From: Mumit Khan <khan at xraylith dot wisc dot edu>
- Date: Fri, 23 Oct 1998 14:16:00 -0500
Should go into release branch as well.
Fri Oct 23 13:51:52 1998 Mumit Khan <khan@xraylith.wisc.edu>
* i386/crtdll.h (CPP_PREDEFINES): Fix typo.
* i386/mingw32.h (CPP_PREDEFINES): Likewise.
Index: gcc/config/i386/crtdll.h
===================================================================
RCS file: /archive/src/gnu/CVSROOT/egcs-1.1/gcc/config/i386/crtdll.h,v
retrieving revision 1.2
diff -u -3 -p -r1.2 crtdll.h
--- gcc/config/i386/crtdll.h 1998/09/03 01:48:57 1.2
+++ gcc/config/i386/crtdll.h 1998/10/23 18:51:33
@@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */
#define CPP_PREDEFINES "-Di386 -D_WIN32 -DWIN32 -D__WIN32__ \
-D__MINGW32__ -DWINNT -D_X86_=1 -D__STDC__=1\
-D__stdcall=__attribute__((__stdcall__)) \
- _D_stdcall=__attribute__((__stdcall__)) \
+ -D_stdcall=__attribute__((__stdcall__)) \
-D__cdecl=__attribute__((__cdecl__)) \
-D__declspec(x)=__attribute__((x)) \
-Asystem(winnt) -Acpu(i386) -Amachine(i386)"
Index: gcc/config/i386/mingw32.h
===================================================================
RCS file: /archive/src/gnu/CVSROOT/egcs-1.1/gcc/config/i386/mingw32.h,v
retrieving revision 1.2
diff -u -3 -p -r1.2 mingw32.h
--- gcc/config/i386/mingw32.h 1998/09/03 01:48:57 1.2
+++ gcc/config/i386/mingw32.h 1998/10/23 18:51:37
@@ -33,7 +33,7 @@ Boston, MA 02111-1307, USA. */
#define CPP_PREDEFINES "-Di386 -D_WIN32 -DWIN32 -D__WIN32__ \
-D__MINGW32__ -D__MSVCRT__ -DWINNT -D_X86_=1 -D__STDC__=1\
-D__stdcall=__attribute__((__stdcall__)) \
- _D_stdcall=__attribute__((__stdcall__)) \
+ -D_stdcall=__attribute__((__stdcall__)) \
-D__cdecl=__attribute__((__cdecl__)) \
-D__declspec(x)=__attribute__((x)) \
-Asystem(winnt) -Acpu(i386) -Amachine(i386)"
Regards,
Mumit