This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Typo in CPP specs


Hi there, 

The folowing patch corrects a missing space in default CPP specs for
PII and PIII.

Bootstrapped on

$ gcc -v
Reading specs from /usr/local/gcc/lib/gcc-lib/pentium2-pc-netbsdelf/3.2.1/specs
Configured with: /usr/velco/src/gcc-3.2/configure --prefix=/usr/local/gcc --enable-languages=c,c++ --build=pentium2-pc-netbsdelf --host=pentium2-pc-netbsdelf --target=pentium2-pc-netbsdelf --enable-threads=posix
Thread model: posix
gcc version 3.2.1 20021025 (prerelease)

~velco
Index: gcc/config/i386/i386.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.h,v
retrieving revision 1.243.2.8.2.4
diff -u -d -p -r1.243.2.8.2.4 i386.h
--- gcc/config/i386/i386.h	16 Oct 2002 17:45:26 -0000	1.243.2.8.2.4
+++ gcc/config/i386/i386.h	27 Oct 2002 16:15:11 -0000
@@ -525,11 +525,11 @@ extern int ix86_arch;
 #endif
 #if TARGET_CPU_DEFAULT == TARGET_CPU_DEFAULT_pentium2
 #define CPP_CPU_DEFAULT_SPEC "-D__tune_i686__ -D__tune_pentiumpro__\
--D__tune_pentium2__"
+ -D__tune_pentium2__"
 #endif
 #if TARGET_CPU_DEFAULT == TARGET_CPU_DEFAULT_pentium3
 #define CPP_CPU_DEFAULT_SPEC "-D__tune_i686__ -D__tune_pentiumpro__\
--D__tune_pentium2__ -D__tune_pentium3__"
+ -D__tune_pentium2__ -D__tune_pentium3__"
 #endif
 #if TARGET_CPU_DEFAULT == TARGET_CPU_DEFAULT_pentium4
 #define CPP_CPU_DEFAULT_SPEC "-D__tune_pentium4__"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]