[llvm] r327305 - update_mir_test_checks: Fix handling of IR input after r326284

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 12 11:06:58 PDT 2018


Author: bogner
Date: Mon Mar 12 11:06:58 2018
New Revision: 327305

URL: http://llvm.org/viewvc/llvm-project?rev=327305&view=rev
Log:
update_mir_test_checks: Fix handling of IR input after r326284

Modified:
    llvm/trunk/utils/update_mir_test_checks.py

Modified: llvm/trunk/utils/update_mir_test_checks.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/update_mir_test_checks.py?rev=327305&r1=327304&r2=327305&view=diff
==============================================================================
--- llvm/trunk/utils/update_mir_test_checks.py (original)
+++ llvm/trunk/utils/update_mir_test_checks.py Mon Mar 12 11:06:58 2018
@@ -392,8 +392,8 @@ def update_test_file(llc, test, remove_c
             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)




More information about the llvm-commits mailing list