diff options
author | Taras Glek <tglek@gcc.gnu.org> | 2009-05-14 23:10:50 +0000 |
---|---|---|
committer | Taras Glek <tglek@gcc.gnu.org> | 2009-05-14 23:10:50 +0000 |
commit | 16f7ad426ee129a37f4570a6420e4817be69e7a3 (patch) | |
tree | 1a2e083c266209add63e9942315e1113fb84bff0 /gcc/attribs.c | |
parent | 0511ddbb337da0007678136582a39fc769e140ab (diff) | |
download | gcc-16f7ad426ee129a37f4570a6420e4817be69e7a3.zip gcc-16f7ad426ee129a37f4570a6420e4817be69e7a3.tar.gz gcc-16f7ad426ee129a37f4570a6420e4817be69e7a3.tar.bz2 |
Correct formatting errors commited in rev 147516
From-SVN: r147547
Diffstat (limited to 'gcc/attribs.c')
-rw-r--r-- | gcc/attribs.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/attribs.c b/gcc/attribs.c index a7f549e..5b18aa3 100644 --- a/gcc/attribs.c +++ b/gcc/attribs.c @@ -194,16 +194,16 @@ init_attributes (void) void register_attribute (const struct attribute_spec *attr) { - struct substring str; - const void **slot; - - str.str = attr->name; - str.length = strlen (str.str); - slot = (const void **)htab_find_slot_with_hash (attribute_hash, &str, - substring_hash (str.str, str.length), - INSERT); - gcc_assert (!*slot); - *slot = attr; + struct substring str; + const void **slot; + + str.str = attr->name; + str.length = strlen (str.str); + slot = (const void **)htab_find_slot_with_hash (attribute_hash, &str, + substring_hash (str.str, str.length), + INSERT); + gcc_assert (!*slot); + *slot = attr; } /* Return the spec for the attribute named NAME. */ |