Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f9207603
Commit
f9207603
authored
Aug 11, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(hash_is_key_in_hash): Function somehow got lost.
From-SVN: r12614
parent
3e2b54f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
gcc/objc/hash.c
+19
-0
No files found.
gcc/objc/hash.c
View file @
f9207603
...
...
@@ -251,3 +251,22 @@ hash_value_for_key (cache_ptr cache, const void *key)
return
retval
;
}
/* Given KEY, return YES if it exists in the CACHE.
Return NO if it does not */
BOOL
hash_is_key_in_hash
(
cache_ptr
cache
,
const
void
*
key
)
{
node_ptr
node
=
cache
->
node_table
[(
*
cache
->
hash_func
)(
cache
,
key
)];
if
(
node
)
do
{
if
((
*
cache
->
compare_func
)(
node
->
key
,
key
))
return
YES
;
else
node
=
node
->
next
;
}
while
(
node
);
return
NO
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment