Skip to content

Commit 58d02e0

Browse files
author
Zvi Rackover
committed
[X86] Fix test checks script to satisfy pyflakes
- Remove unused imports. - Initialize the variable 'name' before its (static) uses, and rename it to a more descriptive name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286128 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent cfce1b9 commit 58d02e0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

utils/update_llc_test_checks.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@
88
"""
99

1010
import argparse
11-
import itertools
1211
import os # Used to advertise this file's name ("autogenerated_note").
1312
import string
1413
import subprocess
1514
import sys
16-
import tempfile
1715
import re
1816

1917
# Invoke the tool that is being tested.
@@ -203,6 +201,7 @@ def main():
203201

204202
is_in_function = False
205203
is_in_function_start = False
204+
func_name = None
206205
prefix_set = set([prefix for prefixes, _ in prefix_list for prefix in prefixes])
207206
if args.verbose:
208207
print >>sys.stderr, 'Rewriting FileCheck prefixes: %s' % (prefix_set,)
@@ -220,7 +219,7 @@ def main():
220219
continue
221220

222221
# Print out the various check lines here.
223-
output_lines = add_checks(output_lines, prefix_list, func_dict, name)
222+
output_lines = add_checks(output_lines, prefix_list, func_dict, func_name)
224223
is_in_function_start = False
225224

226225
if is_in_function:
@@ -242,8 +241,8 @@ def main():
242241
m = IR_FUNCTION_RE.match(input_line)
243242
if not m:
244243
continue
245-
name = m.group(1)
246-
if args.function is not None and name != args.function:
244+
func_name = m.group(1)
245+
if args.function is not None and func_name != args.function:
247246
# When filtering on a specific function, skip all others.
248247
continue
249248
is_in_function = is_in_function_start = True

0 commit comments

Comments
 (0)