Module: gas-preprocessor Branch: master Commit: 5964c3690d3373ca660ea64a8c7cdffe1b9db999
Author: Martin Storsjo <[email protected]> Committer: Martin Storsjo <[email protected]> Date: Wed Oct 2 10:56:27 2019 +0300 Filter out the armasm argument "-oldit" from the preprocessor This parameter seems to practically have the same effect as "-ignore 4509", i.e. silence warnings about usage of the "it" instruction that was deprecated in ARMv8. --- gas-preprocessor.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl index 6da37c1..b6c2786 100755 --- a/gas-preprocessor.pl +++ b/gas-preprocessor.pl @@ -162,6 +162,7 @@ if ($as_type ne "armasm") { @preprocess_c_cmd = grep ! /^-fp/, @preprocess_c_cmd; @preprocess_c_cmd = grep ! /^-EHsc$/, @preprocess_c_cmd; @preprocess_c_cmd = grep ! /^-O/, @preprocess_c_cmd; + @preprocess_c_cmd = grep ! /^-oldit/, @preprocess_c_cmd; @gcc_cmd = grep ! /^-G/, @gcc_cmd; @gcc_cmd = grep ! /^-W/, @gcc_cmd; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
