Changeset 1391 for branches/GNU/src/gcc/libobjc/hash.c
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libobjc/hash.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 48 48 /* Pass me a value greater than 0 and a power of 2. */ 49 49 assert (size); 50 assert (! (size & (size - 1)));50 assert (! (size & (size - 1))); 51 51 52 52 /* Allocate the cache structure. calloc insures … … 197 197 } else 198 198 prev = node, node = node->next; 199 } while (! removed && node);199 } while (! removed && node); 200 200 assert (removed); 201 201 } … … 211 211 /* If the scan is being started then reset the last node 212 212 visitied pointer and bucket index. */ 213 if (! node)213 if (! node) 214 214 cache->last_bucket = 0; 215 215 … … 259 259 } else 260 260 node = node->next; 261 } while (! retval && node);261 } while (! retval && node); 262 262 263 263 return retval; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.