* tree-vect-data-refs.c (compare_tree): Rename and move ...
[official-gcc.git] / contrib / check_GNU_style.py
blob6970ddfe1f4cbb667c5c7d41e1ecbbd1e8f427ab
1 #!/usr/bin/env python3
3 # Checks some of the GNU style formatting rules in a set of patches.
4 # The script is a rewritten of the same bash script and should eventually
5 # replace the former script.
7 # This file is part of GCC.
9 # GCC is free software; you can redistribute it and/or modify it under
10 # the terms of the GNU General Public License as published by the Free
11 # Software Foundation; either version 3, or (at your option) any later
12 # version.
14 # GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 # for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with GCC; see the file COPYING3. If not see
21 # <http://www.gnu.org/licenses/>. */
23 import argparse
24 from check_GNU_style_lib import check_GNU_style_file
26 def main():
27 parser = argparse.ArgumentParser(description='Check GNU coding style.')
28 parser.add_argument('file', help = 'File with a patch')
29 parser.add_argument('-f', '--format', default = 'stdio',
30 help = 'Display format',
31 choices = ['stdio', 'quickfix'])
32 args = parser.parse_args()
33 check_GNU_style_file(args.file, args.format)
35 main()