hasting2 03/01/21 12:52:57
Modified: live/gcc3/gcc/config/i386 Tag: fearless-kitty-branch
darwin.h
Log:
Reinstate patch lost in the dizzy-kitty-into-fearless-kitty merge (yielding
gcc3-1207).
Force Darwin/x86 to default as "-march=i686 -mcpu=pentium4" on "fearless-kitty"
branch.
Revision Changes Path
No revision
No revision
1.15.2.1 +6 -0 src/live/gcc3/gcc/config/i386/darwin.h
Index: darwin.h
===================================================================
RCS file: /cvs/Darwin/src/live/gcc3/gcc/config/i386/darwin.h,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -u -r1.15 -r1.15.2.1
--- darwin.h 2002/06/13 00:36:00 1.15
+++ darwin.h 2003/01/21 20:52:57 1.15.2.1
@@ -307,3 +307,9 @@
#endif
#define USER_LABEL_PREFIX ""
+
+#undef SUBTARGET_OVERRIDE_OPTIONS
+/* Force Darwin/x86 to default as "-march=i686 -mcpu=pentium4". */
+#define SUBTARGET_OVERRIDE_OPTIONS \
+ ix86_arch_string = "pentiumpro"; \
+ ix86_cpu_string = "pentium4";