diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-06-24 16:32:12 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-06-25 08:18:10 +0200 |
commit | 760980b0b510acac555f0c252fbaa10a4751bded (patch) | |
tree | 7deaf385e003b32fe15db41ee93400f66fe71d30 /tools | |
parent | 31a76d64ff91d4dd8606890a8996a6c4400e1c0c (diff) |
Fix typos
Change-Id: I2bccc7beb2e9dfccd84b118a33a7aee9753a8be1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97040
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx | 2 | ||||
-rw-r--r-- | tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx b/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx index 13dd48d2176e..7455d0191844 100644 --- a/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx +++ b/tools/qa/cppunit/test_cpu_runtime_detection_SSE2.cxx @@ -40,7 +40,7 @@ void CpuRuntimeDetection_SSE2::testCpuRuntimeDetection() void CpuRuntimeDetection_SSE2::checkSSE2() { - // Try some SSE2 intrinsics calcualtion + // Try some SSE2 intrinsics calculation __m128i a = _mm_set1_epi32(15); __m128i b = _mm_set1_epi32(15); __m128i c = _mm_xor_si128(a, b); diff --git a/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx b/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx index 1d730d99e985..9e63e59c7835 100644 --- a/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx +++ b/tools/qa/cppunit/test_cpu_runtime_detection_SSSE3.cxx @@ -40,7 +40,7 @@ void CpuRuntimeDetection_SSSE3::testCpuRuntimeDetection() void CpuRuntimeDetection_SSSE3::checkSSSE3() { - // Try some SSSE3 intrinsics calcualtion + // Try some SSSE3 intrinsics calculation __m128i a = _mm_set1_epi32(3); __m128i b = _mm_set1_epi32(3); __m128i c = _mm_maddubs_epi16(a, b); |