diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fcbc33c..dc72887 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-12-15 Alexandre Oliva <aoliva@redhat.com> + + * tree.c (type_hash_add): Fix whitespace. + 2007-12-15 Hans-Peter Nilsson <hp@axis.com> Add CRIS v32 support. Fix -mcc-init. @@ -4677,7 +4677,7 @@ type_hash_add (hashval_t hashcode, tree type) h->hash = hashcode; h->type = type; loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT); - *loc = (void*)h; + *loc = (void *)h; } /* Given TYPE, and HASHCODE its hash code, return the canonical |