From: Richard Kenner Date: Fri, 17 May 1996 12:12:15 +0000 (-0400) Subject: (hash_is_key_in_hash): New function. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=168887fa2c3752284cce2df7b7949afd74ea5afc;p=gcc.git (hash_is_key_in_hash): New function. From-SVN: r11979 --- diff --git a/gcc/objc/hash.c b/gcc/objc/hash.c index b0245733bfb..67b97507bd6 100644 --- a/gcc/objc/hash.c +++ b/gcc/objc/hash.c @@ -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);