Skip to content
Snippets Groups Projects
Unverified Commit 33f83d3c authored by Martin Jambor's avatar Martin Jambor
Browse files

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  <mjambor@suse.cz>

	* check-params-in-docs.py (ignored): Add
	gcn-preferred-vectorization-factor.
parent b87ba792
No related branches found
No related tags found
No related merge requests found
......@@ -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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment