commit 22a6bffa93b3fb56e924a0b53ff1d32f601d555b parent 0a0f72b6ea64b0db8e42c52b315ab01f6a17dccd 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); }