[hackers] [scc] [cc1] Small white space change || Roberto E. Vargas Caballero

From: <git_AT_suckless.org>
Date: Mon, 12 Dec 2016 15:53:03 +0100 (CET)

commit 3f25145c5b118b673d55501f57703990cc2d337d
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Mon Dec 12 10:54:24 2016 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Mon Dec 12 15:24:25 2016 +0100

    [cc1] Small white space change
    
    Group operators with operands to improve precedence reading.

diff --git a/cc1/types.c b/cc1/types.c
index 783b5a5..cfb4b06 100644
--- a/cc1/types.c
+++ b/cc1/types.c
_AT_@ -225,7 +225,7 @@ typesize(Type *tp)
                  * alignment.
                  */
                 if (tp->op == STRUCT && align-- > 1)
- size += size + align & ~align;
+ size += size+align & ~align;
                 tp->size = size;
                 return;
         case ENUM:
_AT_@ -294,7 +294,7 @@ mktype(Type *tp, int op, TINT nelem, Type *pars[])
                 abort();
         }
 
- t = (op ^ (uintptr_t) tp >> 3) & NR_TYPE_HASH-1;
+ t = (op ^ (uintptr_t) tp>>3) & NR_TYPE_HASH-1;
         tbl = &typetab[t];
         for (bp = *tbl; bp; bp = bp->next) {
                 if (eqtype(bp, &type, 0) && op != STRUCT && op != UNION) {
Received on Mon Dec 12 2016 - 15:53:03 CET

This archive was generated by hypermail 2.3.0 : Mon Dec 12 2016 - 16:00:35 CET