Skip to content

Commit 1e97c19

Browse files
committed
Rename build_function_info_dictionary to build_mir_function_info_dictionary.
1 parent d9e9519 commit 1e97c19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

llvm/utils/UpdateTestChecks/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2473,7 +2473,7 @@ def mangle_vreg(opcode, current_names):
24732473
return base
24742474

24752475

2476-
def build_function_info_dictionary(
2476+
def build_mir_function_info_dictionary(
24772477
test, raw_tool_output, triple, prefixes, func_dict, verbose
24782478
):
24792479
for m in MIR_FUNC_RE.finditer(raw_tool_output):

llvm/utils/update_llc_test_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def update_test(ti: common.TestInfo):
155155
if prefix not in mir_func_dict:
156156
mir_func_dict[prefix] = {}
157157

158-
common.build_function_info_dictionary(
158+
common.build_mir_function_info_dictionary(
159159
ti.path,
160160
raw_tool_output,
161161
triple,

llvm/utils/update_mir_test_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def update_test_file(args, test, autogenerated_note):
131131
common.warn("No triple found: skipping file", test_file=test)
132132
return
133133

134-
common.build_function_info_dictionary(
134+
common.build_mir_function_info_dictionary(
135135
test,
136136
raw_tool_output,
137137
triple_in_cmd or triple_in_ir,

0 commit comments

Comments
 (0)