From 37b56dfd7d07db2dad1df7025733f499718a4d07 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Thu, 3 Aug 2023 14:42:37 +0800 Subject: [PATCH] meson: Remove arm_neon_workaround Suddenly found this workaround doesn't need anymore Signed-off-by: Yonggang Luo Reviewed-by: David Heidelberg Part-of: --- src/util/format/meson.build | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/util/format/meson.build b/src/util/format/meson.build index 8339e917d33..d703b4c8032 100644 --- a/src/util/format/meson.build +++ b/src/util/format/meson.build @@ -33,13 +33,6 @@ files_mesa_format = files( 'u_format_zs.c', ) -# TODO: remove the quirk when GCC get test and fix inside release -# See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108163 -arm_neon_workaround = [] -if cc.get_id() == 'gcc' and host_machine.cpu_family().contains('arm') - arm_neon_workaround = gcc_lto_quirk -endif - u_format_pack_h = custom_target( 'u_format_pack.h', input : ['u_format_table.py', 'u_format.csv'],