dpatel 02/09/18 12:36:44
Modified: gcc gcc.c
Log:
It's __ppc__ and not __PPC__.
Plus my previous check-in, unintentionally altered couple of APPLE LOCAL
markers.
Revision Changes Path
1.146 +3 -3 gcc3/gcc/gcc.c
Index: gcc.c
===================================================================
RCS file: /cvs/Darwin/gcc3/gcc/gcc.c,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- gcc.c 2002/09/18 02:00:29 1.145
+++ gcc.c 2002/09/18 19:36:44 1.146
@@ -5180,7 +5180,7 @@
temp_filename_length + 1);
obstack_grow (&obstack, temp_filename,
temp_filename_length);
- /* APPLE LOCAL */
+ /* APPLE LOCAL what is this for? */
delete_this_arg = 0;
arg_going = 1;
break;
@@ -5225,7 +5225,7 @@
free (saved_suffix);
obstack_grow (&obstack, t->filename, t->filename_length);
- /* APPLE LOCAL */
+ /* APPLE LOCAL what is this for? */
delete_this_arg = (save_temps_flag == 0);
}
arg_going = 1;
@@ -5356,7 +5356,7 @@
}
if (!strcmp(arches[current_arch].name, "ppc"))
{
- sprintf (tmpstr, "-D__PPC__");
+ sprintf (tmpstr, "-D__ppc__");
do_spec_1 (tmpstr, 1, NULL);
do_spec_1 (" ", 0, NULL);