From 77c922bf051862b240d841c025f6c388c776463e Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 25 Feb 2010 06:43:45 -0500 Subject: * move the 's': InstructionsSet ---> InstructionSets * proper capitalization: SSE, AltiVec --- Eigen/Core | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Eigen') diff --git a/Eigen/Core b/Eigen/Core index 41372666b..5b28e6ba7 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -146,19 +146,19 @@ namespace Eigen { -inline static const char *SimdInstructionsSetInUse(void) { +inline static const char *SimdInstructionSetsInUse(void) { #if defined(EIGEN_VECTORIZE_SSE4_2) - return "sse, sse2, sse3, ssse3, sse4.1, sse4.2"; + return "SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2"; #elif defined(EIGEN_VECTORIZE_SSE4_1) - return "sse, sse2, sse3, ssse3, sse4.1"; + return "SSE, SSE2, SSE3, SSSE3, SSE4.1"; #elif defined(EIGEN_VECTORIZE_SSSE3) - return "sse, sse2, sse3, ssse3"; + return "SSE, SSE2, SSE3, SSSE3"; #elif defined(EIGEN_VECTORIZE_SSE3) - return "sse, sse2, sse3"; + return "SSE, SSE2, SSE3"; #elif defined(EIGEN_VECTORIZE_SSE2) - return "sse, sse2"; + return "SSE, SSE2"; #elif defined(EIGEN_VECTORIZE_ALTIVEC) - return "Altivec"; + return "AltiVec"; #else return "None"; #endif -- cgit v1.2.3