aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/cpuinfo.c
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2012-01-20 16:01:38 -0500
committerMatt Turner <[email protected]>2012-01-21 22:43:54 -0500
commitd387899388bd7090bda50593e35f8ed3cb730c47 (patch)
treec8f5b6babbaf8ba242d96c92a7c1bd966fd2dd67 /src/mesa/main/cpuinfo.c
parent309ba0cfa2bbd79307ea73f3fefe77de8bf94c35 (diff)
Remove src/mesa/ppc
It didn't actually do anything except modify the GL_RENDERER string.
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);