diff options
author | alfred <alfred@FreeBSD.org> | 2002-05-30 07:00:42 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-05-30 07:00:42 +0000 |
commit | f0facdc5dd1763536763ab47d1a5bc11e3acd256 (patch) | |
tree | 09fd1f8eef7bd8ed2f925fca35c25efa2f242804 /gnu/usr.bin | |
parent | 67d93076d6eb885f73d19f0676224d6b8da33a6b (diff) | |
download | FreeBSD-src-f0facdc5dd1763536763ab47d1a5bc11e3acd256.zip FreeBSD-src-f0facdc5dd1763536763ab47d1a5bc11e3acd256.tar.gz |
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/gzip/match.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/gzip/match.S b/gnu/usr.bin/gzip/match.S index 6ae8034..2eb114f 100644 --- a/gnu/usr.bin/gzip/match.S +++ b/gnu/usr.bin/gzip/match.S @@ -32,7 +32,7 @@ error: DYN_ALLOC not yet supported in match.s #endif -#if defined(i386) || defined(_I386) +#if defined(i386) || defined(_I386) || defined(__i386__) /* This version is for 386 Unix or OS/2 in 32 bit mode. * Warning: it uses the AT&T syntax: mov source,dest |