aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-12-30 03:44:15 +0000
committerlloyd <[email protected]>2009-12-30 03:44:15 +0000
commitcf6319e4e663f4214a0f9e1509087a58a181910f (patch)
tree5bd05c0c137489f467768f7eb8a767d0d997a0f1
parentba8123b5c97e85c2bf75016d2bed3cccecf3aeeb (diff)
Fix POWER6 AltiVec detection
-rw-r--r--src/utils/cpuid.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/cpuid.cpp b/src/utils/cpuid.cpp
index 067f24f22..924d29b1b 100644
--- a/src/utils/cpuid.cpp
+++ b/src/utils/cpuid.cpp
@@ -126,6 +126,7 @@ bool altivec_check_pvr_emul()
altivec_capable |= (pvr == PVR_G5_970FX);
altivec_capable |= (pvr == PVR_G5_970MP);
altivec_capable |= (pvr == PVR_G5_970GX);
+ altivec_capable |= (pvr == PVR_POWER6);
altivec_capable |= (pvr == PVR_CELL_PPU);
#endif