From 3b1321ee4f9382c4d615b26e1e17e97352a60d76 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Mon, 12 Mar 2018 18:06:58 +0000 Subject: [PATCH] update_mir_test_checks: Fix handling of IR input after r326284 llvm-svn: 327305 --- utils/update_mir_test_checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/update_mir_test_checks.py b/utils/update_mir_test_checks.py index a5b1066c94c..56d236de249 100755 --- a/utils/update_mir_test_checks.py +++ b/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)