aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/cpuinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/cpuinfo.c')
-rw-r--r--src/mesa/main/cpuinfo.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/main/cpuinfo.c b/src/mesa/main/cpuinfo.c
index 6363512961a..0d7971bcc47 100644
--- a/src/mesa/main/cpuinfo.c
+++ b/src/mesa/main/cpuinfo.c
@@ -83,24 +83,6 @@ _mesa_get_cpu_string(void)
strcat(buffer, "SPARC");
-#elif defined(USE_PPC_ASM)
-
- if (_mesa_ppc_cpu_features) {
- strcat(buffer, (cpu_has_64) ? "PowerPC 64" : "PowerPC");
- }
-
-# ifdef USE_VMX_ASM
-
- if (cpu_has_vmx) {
- strcat(buffer, "/Altivec");
- }
-
-# endif
-
- if (! cpu_has_fpu) {
- strcat(buffer, "/No FPU");
- }
-
#endif
assert(strlen(buffer) < MAX_STRING);