qHash: fix running on CPUs without AVX2

The extra "V" accidentally enabled AVX2 code in the aeshash128()
function.

Fixes: QTBUG-101082
Change-Id: Ibf4acec0f166495998f7fffd16d63e220dbe02d0
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Reviewed-by: Robert Löhning <robert.loehning@qt.io>
This commit is contained in:
Thiago Macieira 2022-02-22 15:03:49 -08:00
parent af36dc7d76
commit fa2830dc6e

View File

@ -778,7 +778,7 @@ aeshash256_avx256(const uchar *p, size_t len, size_t seed, size_t seed2) noexcep
}
# endif // VAES
static size_t QT_FUNCTION_TARGET(VAES)
static size_t QT_FUNCTION_TARGET(AES)
aeshash128(const uchar *p, size_t len, size_t seed, size_t seed2) noexcept
{
AESHashSeed state(seed, seed2);