Skip to content

Commit

Permalink
[UpdateTestChecks] Remove unnecessary return from add_ir_checks
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@329262 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
RKSimon committed Apr 5, 2018
1 parent 88fe9bc commit 8caab7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion utils/UpdateTestChecks/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,3 @@ def add_ir_checks(output_lines, comment_marker, prefix_list, func_dict, func_nam
# line of code in the test function.
output_lines.append(comment_marker)
break
return output_lines
2 changes: 1 addition & 1 deletion utils/update_test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def main():
continue

# Print out the various check lines here.
output_lines = common.add_ir_checks(output_lines, ';', prefix_list, func_dict, func_name)
common.add_ir_checks(output_lines, ';', prefix_list, func_dict, func_name)
is_in_function_start = False

if is_in_function:
Expand Down

0 comments on commit 8caab7d

Please sign in to comment.