aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/UpdateTestChecks/common.py
diff options
context:
space:
mode:
authorSam Parker <sam.parker@arm.com>2020-08-25 11:12:26 +0100
committerSam Parker <sam.parker@arm.com>2020-08-25 11:13:33 +0100
commitaf6140fe8ae8f59c6149e7cc12fe02679d8dcca3 (patch)
tree12464bba1c57a1c32334f9b690a336c0b4c42403 /llvm/utils/UpdateTestChecks/common.py
parent41726f8d5b24bc449b48d1d9e09523ee266cc5e4 (diff)
downloadllvm-af6140fe8ae8f59c6149e7cc12fe02679d8dcca3.zip
llvm-af6140fe8ae8f59c6149e7cc12fe02679d8dcca3.tar.gz
llvm-af6140fe8ae8f59c6149e7cc12fe02679d8dcca3.tar.bz2
[UpdatesTestChecks] Fix typo in common.py
global_vars_see_dict -> global_vars_seen_dict
Diffstat (limited to 'llvm/utils/UpdateTestChecks/common.py')
-rw-r--r--llvm/utils/UpdateTestChecks/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/UpdateTestChecks/common.py b/llvm/utils/UpdateTestChecks/common.py
index 057e496..6adbebcb 100644
--- a/llvm/utils/UpdateTestChecks/common.py
+++ b/llvm/utils/UpdateTestChecks/common.py
@@ -532,7 +532,7 @@ def add_ir_checks(output_lines, comment_marker, prefix_list, func_dict,
def add_analyze_checks(output_lines, comment_marker, prefix_list, func_dict, func_name):
check_label_format = '{} %s-LABEL: \'%s%s\''.format(comment_marker)
- global_vars_see_dict = {}
+ global_vars_seen_dict = {}
add_checks(output_lines, comment_marker, prefix_list, func_dict, func_name,
check_label_format, False, True, global_vars_seen_dict)