update_mir_test_checks: Fix a typo I made while preparing for commit
authorJustin Bogner <mail@justinbogner.com>
Wed, 18 Oct 2017 05:39:22 +0000 (05:39 +0000)
committerJustin Bogner <mail@justinbogner.com>
Wed, 18 Oct 2017 05:39:22 +0000 (05:39 +0000)
I accidentally added an extra arg here, so this didn't work at all.

llvm-svn: 316062

llvm/utils/update_mir_test_checks.py

index 1223bde..c453a28 100755 (executable)
@@ -308,7 +308,7 @@ def update_test_file(llc, test, remove_common_prefixes=False, verbose=False):
             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)