forked from OSchip/llvm-project
don't hardcode the name of the llc checks script
We lose the 'utils' directory name in our advertising line with this change. We could retain that, but I don't see the point. This removes a dependency for making the script apply to more than 'llc'. Ie, we'll want to change the script name if it works with opt/clang too. llvm-svn: 264310
This commit is contained in:
parent
26fe92d19f
commit
506fd0d81d
|
@ -9,8 +9,7 @@ a single test function.
|
|||
|
||||
import argparse
|
||||
import itertools
|
||||
# Could be used to advertise this file's name ("autogenerated_note").
|
||||
# import os
|
||||
import os # Used to advertise this file's name ("autogenerated_note").
|
||||
import string
|
||||
import subprocess
|
||||
import sys
|
||||
|
@ -144,10 +143,8 @@ def main():
|
|||
parser.add_argument('tests', nargs='+')
|
||||
args = parser.parse_args()
|
||||
|
||||
# FIXME: we don't need to hardcode this name.
|
||||
autogenerated_note = ('; NOTE: Assertions have been autogenerated by '
|
||||
'utils/update_llc_test_checks.py')
|
||||
# + os.path.basename(__file__))
|
||||
+ os.path.basename(__file__))
|
||||
|
||||
for test in args.tests:
|
||||
if args.verbose:
|
||||
|
|
Loading…
Reference in New Issue