which is in the user's namespace.
* libgcc2.c: Look for the ANSI-C approved `__i386__' symbol, vs.
`i386' which is not in our namespace.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30627
138bc75d-0d04-0410-961f-
82ee72b054a4
+Mon Nov 22 23:09:44 1999 David O'Brien <obrien@FreeBSD.org>
+
+ * xm-i386.h: Define `__i386__' if not defined, rather than `i386'
+ which is in the user's namespace.
+ * libgcc2.c: Look for the ANSI-C approved `__i386__' symbol, vs.
+ `i386' which is not in our namespace.
+
Mon Nov 22 22:58:01 1999 "R. Kelley Cook" <KelleyCook@attglobal.net>
* invoke.texi (ARM Options): Add in -mno-alignment-traps
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef i386
-#define i386
+#ifndef __i386__
+#define __i386__
#endif
/* #defines that need visibility everywhere. */
#endif
}
-#ifdef i386
+#ifdef __i386__
extern int VirtualProtect (char *, int, int, int *) __attribute__((stdcall));
#endif