From 4fb84273d03c549968ac959bb95193a2597c264c Mon Sep 17 00:00:00 2001 From: tglek Date: Thu, 14 May 2009 23:10:50 +0000 Subject: Correct formatting errors commited in rev 147516 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147547 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/attribs.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'gcc/attribs.c') diff --git a/gcc/attribs.c b/gcc/attribs.c index a7f549e1dc8..5b18aa35751 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. */ -- cgit v1.2.1