[Expat-checkins] expat/lib internal.h,1.2,1.3

Fred L. Drake fdrake@users.sourceforge.net
Fri, 06 Sep 2002 14:49:59 -0700


Update of /cvsroot/expat/expat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv3903/expat/lib

Modified Files:
	internal.h 
Log Message:
A last-minute report suggests a problem with this using at least some
versions of egcs, so disable FASTCALL for GCC as well.  We are now not using
this for any platform.  ;-(


Index: internal.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/internal.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- internal.h	6 Sep 2002 21:29:46 -0000	1.2
+++ internal.h	6 Sep 2002 21:49:56 -0000	1.3
@@ -13,7 +13,10 @@
 */
 
 #if defined(__GNUC__)
-#define FASTCALL __attribute__((stdcall, regparm(3)))
+/* Last minute instability reported with egcs on a RedHat Linux 7.3
+   box; argh!
+*/
+/* #define FASTCALL __attribute__((stdcall, regparm(3))) */
 #elif defined(WIN32)
 /* XXX This seems to have an unexpected negative effect on Windows so
    we'll disable it for now on that platform.  It may be reconsidered