(hash_is_key_in_hash): New function.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 17 May 1996 12:12:15 +0000 (08:12 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 17 May 1996 12:12:15 +0000 (08:12 -0400)
From-SVN: r11979

gcc/objc/hash.c

index b0245733bfbb632eb5fc5ef103b4d2db10f7727d..67b97507bd61b612a721dbb18a954f0328a657ce 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);