Fix iOS build broken by earlier commit

This commit is contained in:
Chris Cannam
2020-09-15 08:20:07 +01:00
parent 0513096661
commit a992376541

View File

@@ -677,7 +677,9 @@ inline void v_abs(float *const R__ dst,
const int count)
{
float tmp[count];
#if (defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070)
#if TARGET_OS_IPHONE
vvfabsf(tmp, dst, &count);
#elif (defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070)
vvfabf(tmp, dst, &count);
#else
vvfabsf(tmp, dst, &count);