aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/simd_32/simd_altivec.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-24 00:39:06 +0000
committerlloyd <[email protected]>2009-11-24 00:39:06 +0000
commit404462c4dda58af79a7cf53da790a86bdae4633e (patch)
tree441fe91b4da4a97e875b090ad9673a7b6499dba5 /src/utils/simd_32/simd_altivec.h
parent798230f8e6893e0a8e4eed3cd3215cb5fef13154 (diff)
Make sure the SIMD_32 implementation we're using actually works on the
system before returning a new instance.
Diffstat (limited to 'src/utils/simd_32/simd_altivec.h')
-rw-r--r--src/utils/simd_32/simd_altivec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/simd_32/simd_altivec.h b/src/utils/simd_32/simd_altivec.h
index 3e784a8c4..e1704e76c 100644
--- a/src/utils/simd_32/simd_altivec.h
+++ b/src/utils/simd_32/simd_altivec.h
@@ -20,7 +20,7 @@ namespace Botan {
class SIMD_Altivec
{
public:
- bool enabled() const { return CPUID::has_altivec(); }
+ static bool enabled() { return CPUID::has_altivec(); }
SIMD_Altivec(const u32bit B[4])
{