Optimize SIMD code harder with -O3.

Avoids inadvertent non-optimization having an impact.

Change-Id: Ic548769e98f00d455f67ccd32d493f02b204a70f
Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
private/marco/calc-tabs-position
Michael Meeks 2024-03-09 16:57:31 +00:00 committed by Caolán McNamara
parent 04b74d5767
commit 19fec4fc58
1 changed files with 1 additions and 1 deletions

View File

@ -1192,7 +1192,7 @@ AC_SUBST(ENABLE_EMSCRIPTENAPP)
has_simd=no
if test "$mobile_app" != "true"; then
# Check for SIMD / AVX2 acceleration compile-time goodness
SIMD_CFLAGS=-mavx2
SIMD_CFLAGS="-mavx2 -O3"
AC_MSG_CHECKING([whether $CC has AVX2 SIMD support])
save_CFLAGS=$CFLAGS