From: Martin Jambor Date: Thu, 11 Apr 2024 17:37:45 +0000 (+0200) Subject: contrib/check-params-in-docs.py: Ignore gcn-preferred-vectorization-factor X-Git-Tag: basepoints/gcc-15~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33f83d3cd84f9876180a2e2a9d1ea082debdaa37;p=thirdparty%2Fgcc.git contrib/check-params-in-docs.py: Ignore gcn-preferred-vectorization-factor contrib/check-params-in-docs.py is a script that checks that all options reported with ./gcc/xgcc -Bgcc --help=param are in gcc/doc/invoke.texi and vice versa. gcn-preferred-vectorization-factor is in the manual but normally not reported by --help, probably because I do not have gcn offload configured. This patch makes the script silently about this particular fact. contrib/ChangeLog: 2024-04-11 Martin Jambor * check-params-in-docs.py (ignored): Add gcn-preferred-vectorization-factor. --- diff --git a/contrib/check-params-in-docs.py b/contrib/check-params-in-docs.py index 623c82284e26..f7879dd8e08c 100755 --- a/contrib/check-params-in-docs.py +++ b/contrib/check-params-in-docs.py @@ -45,7 +45,7 @@ parser.add_argument('params_output') args = parser.parse_args() -ignored = {'logical-op-non-short-circuit'} +ignored = {'logical-op-non-short-circuit', 'gcn-preferred-vectorization-factor'} params = {} for line in open(args.params_output).readlines():