commit 42fd80186eb88ab683c82a866366d2c72657e1ac parent 94ca1b27fc57c64bf0ee1dc95f1c58555aaf6e2a Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Mon, 1 Nov 2021 16:02:50 +0100 cc1: Whitespace change Diffstat:
| M | src/cmd/cc/cc1/code.c | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/cmd/cc/cc1/code.c b/src/cmd/cc/cc1/code.c @@ -445,7 +445,9 @@ emitbin(int op, void *arg) emitnode(np->left); emitnode(np->right); - if ((s = optxt[op]) != NULL) { /* do not print in OCOLON case */ + + /* do not print in OCOLON case */ + if ((s = optxt[op]) != NULL) { fprintf(outfp, "\t%s", s); emitletter(np->type); }