From d387899388bd7090bda50593e35f8ed3cb730c47 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 20 Jan 2012 16:01:38 -0500 Subject: Remove src/mesa/ppc It didn't actually do anything except modify the GL_RENDERER string. --- src/mesa/main/cpuinfo.c | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/mesa/main/cpuinfo.c') 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); -- cgit v1.2.3