Fixed a small indentation issue. Fixed a #endif in the wrong location.

This commit is contained in:
n-a-c-h
2005-10-26 17:40:57 +00:00
parent fc549f5386
commit 633adea9f6

View File

@@ -480,6 +480,7 @@ if test x$enable_cpucheck != xno; then
} }
else { cpu = (!strcmp(cpu_family, "6")) ? "pentium2" : "pentium-mmx"; } else { cpu = (!strcmp(cpu_family, "6")) ? "pentium2" : "pentium-mmx"; }
} }
#endif
if (!cpu) if (!cpu)
{ {
@@ -487,7 +488,6 @@ if test x$enable_cpucheck != xno; then
if (family > 5) { cpu = "pentiumpro"; } if (family > 5) { cpu = "pentiumpro"; }
else if (family == 5) { cpu = "pentium"; } else if (family == 5) { cpu = "pentium"; }
} }
#endif
} }
#if __GNUC__ > 2 #if __GNUC__ > 2
else if (strstr(model_name, "VIA")) else if (strstr(model_name, "VIA"))
@@ -500,10 +500,10 @@ if test x$enable_cpucheck != xno; then
else if (strstr(flags, "sse")) { cpu = "c3-2"; } else if (strstr(flags, "sse")) { cpu = "c3-2"; }
#endif #endif
#endif #endif
} }
} }
else if (strstr(model_name, "WinChip")) else if (strstr(model_name, "WinChip"))
{ {
#if __GNUC__ > 3 || __GNUC_MINOR__ > 2 #if __GNUC__ > 3 || __GNUC_MINOR__ > 2
if (strstr(flags, "mmx")) if (strstr(flags, "mmx"))
{ {