Skip to content

Commit

Permalink
[clang-tidy] Add export-fixes flag to clang-tidy-diff
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D55848

llvm-svn: 349930
  • Loading branch information
Julie Hockett committed Dec 21, 2018
1 parent a87fba4 commit e2e73b2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py
Expand Up @@ -57,6 +57,9 @@ def main():
default='')
parser.add_argument('-path', dest='build_path',
help='Path used to read a compile command database.')
parser.add_argument('-export-fixes', metavar='FILE', dest='export_fixes',
help='Create a yaml file to store suggested fixes in, '
'which can be applied with clang-apply-replacements.')
parser.add_argument('-extra-arg', dest='extra_arg',
action='append', default=[],
help='Additional argument to append to the compiler '
Expand Down Expand Up @@ -122,6 +125,8 @@ def main():
command.append('-line-filter=' + quote + line_filter_json + quote)
if args.fix:
command.append('-fix')
if args.export_fixes:
command.append('-export-fixes=' + args.export_fixes)
if args.checks != '':
command.append('-checks=' + quote + args.checks + quote)
if args.quiet:
Expand Down

0 comments on commit e2e73b2

Please sign in to comment.