mirror of
https://github.com/sigmasternchen/macrofuck
synced 2025-03-15 15:18:56 +00:00
style: Add newline after statements
This commit is contained in:
parent
3cb516b8c0
commit
37d337b99c
2 changed files with 4 additions and 1 deletions
|
@ -79,6 +79,8 @@ void codegen_statement(FILE* out, band_t* band, struct statement* statement) {
|
|||
fprintf(stderr, "statement kind: %d\n", statement->kind);
|
||||
panic("unknown statement kind");
|
||||
}
|
||||
// add newline after each statement
|
||||
fprintf(out, "\n");
|
||||
}
|
||||
|
||||
int codegen(FILE* out, struct program* program) {
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.
|
||||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.
|
||||
|
||||
|
|
Loading…
Reference in a new issue