diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-05 18:58:14 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-05 18:58:14 +0000 |
commit | d02daecd08752db0c18a93f2d573327fe9c1d74f (patch) | |
tree | e138091ab8021123a73d12ef81c3bb2c39823c93 /gcc/fixinc | |
parent | a2770a85393c56473dd092d8fe2355c254970811 (diff) | |
download | gcc-d02daecd08752db0c18a93f2d573327fe9c1d74f.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57847 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixinc')
-rw-r--r-- | gcc/fixinc/tests/base/testing.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |