OSDN Git Service

(hash_is_key_in_hash): New function.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 May 1996 12:12:15 +0000 (12:12 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 May 1996 12:12:15 +0000 (12:12 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11979 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/objc/hash.c

index b024573..67b9750 100644 (file)
@@ -27,7 +27,6 @@ Boston, MA 02111-1307, USA.  */
 #include "assert.h"
 
 #include "objc/hash.h"
-#include "objc/objc.h"
 
 #include "runtime.h"           /* for DEBUG_PRINTF */
 
@@ -245,7 +244,7 @@ hash_value_for_key (cache_ptr cache, const void *key)
     do {
       if ((*cache->compare_func)(node->key, key)) {
         retval = node->value;
-              break;
+       break;
       } else
         node = node->next;
     } while (!retval && node);