diff options
author | Jack Lloyd <[email protected]> | 2019-10-16 12:37:31 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-10-16 12:37:31 -0400 |
commit | f557d215ad04d93c0e89caaa89d452528f652a58 (patch) | |
tree | a19c650e44fb88e07c1e8b178cf122dc900eee18 /src/lib/utils | |
parent | 638741499e1adc226388d889b104cefbe0049d8f (diff) | |
parent | 27b4dc42d55bd1691196b3fc0be4f4e51e030758 (diff) |
Merge GH #2156 Avoid a warning on x86-32 with GCC 4.9
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/simd/simd_32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/simd/simd_32.h b/src/lib/utils/simd/simd_32.h index 7de89acfc..272a1e0f6 100644 --- a/src/lib/utils/simd/simd_32.h +++ b/src/lib/utils/simd/simd_32.h @@ -604,7 +604,7 @@ class SIMD_4x32 final #endif } - native_simd_type raw() const { return m_simd; } + native_simd_type raw() const BOTAN_FUNC_ISA(BOTAN_SIMD_ISA) { return m_simd; } explicit SIMD_4x32(native_simd_type x) : m_simd(x) {} private: |