ref: 42fd80186eb88ab683c82a866366d2c72657e1ac
parent: 94ca1b27fc57c64bf0ee1dc95f1c58555aaf6e2a
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Nov 1 12:02:50 EDT 2021
cc1: Whitespace change
--- a/src/cmd/cc/cc1/code.c
+++ b/src/cmd/cc/cc1/code.c
@@ -445,7 +445,9 @@
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);
}