diff options
Diffstat (limited to 'llvm/utils/update_mir_test_checks.py')
| -rwxr-xr-x | llvm/utils/update_mir_test_checks.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/utils/update_mir_test_checks.py b/llvm/utils/update_mir_test_checks.py index e6c16718059..6e906130958 100755 --- a/llvm/utils/update_mir_test_checks.py +++ b/llvm/utils/update_mir_test_checks.py @@ -430,17 +430,13 @@ def update_test_file(args, test): def main(): parser = argparse.ArgumentParser( description=__doc__, formatter_class=argparse.RawTextHelpFormatter) - parser.add_argument('-v', '--verbose', action='store_true', - help='Show verbose output') parser.add_argument('--llc-binary', dest='llc', default='llc', type=LLC, help='The "llc" binary to generate the test case with') parser.add_argument('--remove-common-prefixes', action='store_true', help='Remove existing check lines whose prefixes are ' 'shared between multiple commands') - parser.add_argument('-u', '--update-only', action='store_true', - help='Only update test if it was already autogened') parser.add_argument('tests', nargs='+') - args = parser.parse_args() + args = common.parse_commandline_args(parser) test_paths = [test for pattern in args.tests for test in glob.glob(pattern)] for test in test_paths: |

