projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cd3c88
)
(hash_is_key_in_hash): New function.
author
Richard Kenner
<kenner@gcc.gnu.org>
Fri, 17 May 1996 12:12:15 +0000
(08:12 -0400)
committer
Richard Kenner
<kenner@gcc.gnu.org>
Fri, 17 May 1996 12:12:15 +0000
(08:12 -0400)
From-SVN: r11979
gcc/objc/hash.c
patch
|
blob
|
history
diff --git
a/gcc/objc/hash.c
b/gcc/objc/hash.c
index b0245733bfbb632eb5fc5ef103b4d2db10f7727d..67b97507bd61b612a721dbb18a954f0328a657ce 100644
(file)
--- 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);