Changeset 1476 for branches/GNU/src/gcc/libobjc
- Timestamp:
- Sep 7, 2004, 4:49:39 AM (21 years ago)
- Location:
- branches/GNU/src/gcc/libobjc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc/libobjc/ChangeLog
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 1 2004-05-31 Release Manager 2 3 * GCC 3.3.4 Released. 4 5 2004-03-02 Gabriel Dos Reis <gdr@integrable-solutions.net> 6 7 PR bootstrap/14348 8 Backport 9 2003-10-20 Joseph S. Myers <jsm@polyomino.org.uk> 10 * objc/hash.h (hash_string): Don't use a cast as an lvalue. 11 1 12 2004-02-14 Release Manager 2 13 -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libobjc/configure
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 1643 1643 linux-gnu*) 1644 1644 case $host_cpu in 1645 alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* )1645 alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | sh* ) 1646 1646 lt_cv_deplibs_check_method=pass_all ;; 1647 1647 *) -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libobjc/objc/hash.h
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 173 173 unsigned int ret = 0; 174 174 unsigned int ctr = 0; 175 const char *ckey = key; 175 176 176 177 while (*(char *) key) { 178 ret ^= *(char *) key++ << ctr; 177 while (*ckey) { 178 ret ^= *ckey++ << ctr; 179 179 ctr = (ctr + 1) % sizeof (void *); 180 180 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.