public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-9926] contrib/check-params-in-docs.py: Ignore gcn-preferred-vectorization-factor
@ 2024-04-11 17:54 Martin Jambor
  0 siblings, 0 replies; only message in thread
From: Martin Jambor @ 2024-04-11 17:54 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:33f83d3cd84f9876180a2e2a9d1ea082debdaa37

commit r14-9926-g33f83d3cd84f9876180a2e2a9d1ea082debdaa37
Author: Martin Jambor <mjambor@suse.cz>
Date:   Thu Apr 11 19:37:45 2024 +0200

    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.

Diff:
---
 contrib/check-params-in-docs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/check-params-in-docs.py b/contrib/check-params-in-docs.py
index 623c82284e2..f7879dd8e08 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():

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-11 17:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-11 17:54 [gcc r14-9926] contrib/check-params-in-docs.py: Ignore gcn-preferred-vectorization-factor Martin Jambor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).