From: Bruce Korb Date: Sat, 5 Oct 2002 18:58:14 +0000 (+0000) Subject: The Linux variant of GCC has no need of defining "i386", so it doesn't. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ee15017cc205bca9c9b3705fd18404f6b3d129b6;p=gcc.git The Linux variant of GCC has no need of defining "i386", so it doesn't. That renders this test ineffective and the "defined( i386 )" remains unaltered by fixinc. This test is now, generally, a noop. From-SVN: r57847 --- diff --git a/gcc/fixinc/tests/base/testing.h b/gcc/fixinc/tests/base/testing.h index d2393adcc4a..fbf45e344f5 100644 --- a/gcc/fixinc/tests/base/testing.h +++ b/gcc/fixinc/tests/base/testing.h @@ -71,7 +71,7 @@ extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src, #if defined( MACHINE_NAME_CHECK ) /* MACH_DIFF: */ -#if defined( __i386__ ) || defined( sparc ) || defined( vax ) +#if defined( i386 ) || defined( sparc ) || defined( vax ) /* no uniform test, so be careful :-) */ #endif /* MACHINE_NAME_CHECK */