[llvm] r316062 - update_mir_test_checks: Fix a typo I made while preparing for commit

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 17 22:39:22 PDT 2017


Author: bogner
Date: Tue Oct 17 22:39:22 2017
New Revision: 316062

URL: http://llvm.org/viewvc/llvm-project?rev=316062&view=rev
Log:
update_mir_test_checks: Fix a typo I made while preparing for commit

I accidentally added an extra arg here, so this didn't work at all.

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=316062&r1=316061&r2=316062&view=diff
==============================================================================
--- llvm/trunk/utils/update_mir_test_checks.py (original)
+++ llvm/trunk/utils/update_mir_test_checks.py Tue Oct 17 22:39:22 2017
@@ -308,7 +308,7 @@ def update_test_file(llc, test, remove_c
             warn('No triple found: skipping file', test_file=test)
             return
 
-        build_function_body_dictionary(test, raw_tool_output, '',
+        build_function_body_dictionary(test, raw_tool_output,
                                        triple_in_cmd or triple_in_ir,
                                        prefixes, func_dict, verbose)
 




More information about the llvm-commits mailing list