summaryrefslogtreecommitdiff
path: root/gcc/config/i386/driver-i386.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/i386/driver-i386.c')
-rw-r--r--gcc/config/i386/driver-i386.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c
index 4cb9907b5ed..823f92da8c3 100644
--- a/gcc/config/i386/driver-i386.c
+++ b/gcc/config/i386/driver-i386.c
@@ -578,13 +578,13 @@ const char *host_detect_local_cpu (int argc, const char **argv)
case 6:
if (model > 9)
/* Use the default detection procedure. */
- processor = PROCESSOR_GENERIC32;
+ processor = PROCESSOR_GENERIC;
else if (model == 9)
cpu = "c3-2";
else if (model >= 6)
cpu = "c3";
else
- processor = PROCESSOR_GENERIC32;
+ processor = PROCESSOR_GENERIC;
break;
case 5:
if (has_3dnow)
@@ -592,11 +592,11 @@ const char *host_detect_local_cpu (int argc, const char **argv)
else if (has_mmx)
cpu = "winchip2-c6";
else
- processor = PROCESSOR_GENERIC32;
+ processor = PROCESSOR_GENERIC;
break;
default:
/* We have no idea. */
- processor = PROCESSOR_GENERIC32;
+ processor = PROCESSOR_GENERIC;
}
}
}
@@ -618,7 +618,7 @@ const char *host_detect_local_cpu (int argc, const char **argv)
break;
default:
/* We have no idea. */
- processor = PROCESSOR_GENERIC32;
+ processor = PROCESSOR_GENERIC;
}
}