diff options
author | Justin Bogner <mail@justinbogner.com> | 2018-03-12 18:06:58 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2018-03-12 18:06:58 +0000 |
commit | d92248285d4c68866c4bd6e4c392bb8fe0b17ddf (patch) | |
tree | f911789377fbb4d58850870fc9a609b1c4dac614 /llvm/utils/update_mir_test_checks.py | |
parent | 8e94aeb5f8d7f139b0f8c3dd6f964d2cdea37198 (diff) | |
download | bcm5719-llvm-d92248285d4c68866c4bd6e4c392bb8fe0b17ddf.tar.gz bcm5719-llvm-d92248285d4c68866c4bd6e4c392bb8fe0b17ddf.zip |
update_mir_test_checks: Fix handling of IR input after r326284
llvm-svn: 327305
Diffstat (limited to 'llvm/utils/update_mir_test_checks.py')
-rwxr-xr-x | llvm/utils/update_mir_test_checks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/update_mir_test_checks.py b/llvm/utils/update_mir_test_checks.py index a5b1066c94c..56d236de249 100755 --- a/llvm/utils/update_mir_test_checks.py +++ b/llvm/utils/update_mir_test_checks.py @@ -392,8 +392,8 @@ def update_test_file(llc, test, remove_common_prefixes=False, verbose=False): if not m: state = 'ir function body' add_checks_for_function(test, output_lines, run_list, - func_dict, func_name, add_vreg_checks, - single_bb=False, verbose=verbose) + func_dict, func_name, single_bb=False, + verbose=verbose) if should_add_line_to_output(input_line, prefix_set): output_lines.append(input_line) |