Skip to content

Commit 7028480

Browse files
committed
Strip trailing newlines from asm
1 parent 3029a8b commit 7028480

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Assembly/Parse.v

+5-4
Original file line numberDiff line numberDiff line change
@@ -385,10 +385,11 @@ Global Instance show_RawLine : Show RawLine
385385

386386
Global Instance show_Line : Show Line
387387
:= fun l
388-
=> l.(indent) ++ show l.(rawline) ++ l.(pre_comment_whitespace) ++ match l.(comment) with
389-
| Some c => ";" ++ c
390-
| None => ""
391-
end.
388+
=> strip_trailing_newline
389+
(l.(indent) ++ show l.(rawline) ++ l.(pre_comment_whitespace) ++ match l.(comment) with
390+
| Some c => ";" ++ c
391+
| None => ""
392+
end).
392393

393394
Definition show_Line_with_line_number : Show Line
394395
:= fun l => show l ++ "; (line " ++ show l.(line_number) ++ ")".

0 commit comments

Comments
 (0)