Enable a few more clippy lints.

This commit is contained in:
Dan Gohman
2018-07-26 10:10:36 -07:00
parent cc7ba7e69a
commit 15520fa961
4 changed files with 11 additions and 17 deletions

View File

@@ -631,7 +631,7 @@ def gen_member_inits(iform, fmt):
# Immediate operands.
# We have local variables with the same names as the members.
for f in iform.imm_fields:
fmt.line('{}: {},'.format(f.member, f.member))
fmt.line('{},'.format(f.member))
# Value operands.
if iform.has_value_list: