[MLIR] Remove generated spaces at eof for generate-test-checks.py.

This commit is contained in:
Tim Shen 2020-06-16 11:28:36 -07:00
parent 25b3806788
commit a6150de447

View File

@ -90,7 +90,7 @@ def process_line(line_chunks, variable_namer):
# Append the non named group.
output_line += chunk[len(ssa_name):]
return output_line + '\n'
return output_line.rstrip() + '\n'
def process_source_lines(source_lines, note, args):