Ignore:
Timestamp:
Sep 7, 2004, 4:49:39 AM (21 years ago)
Author:
bird
Message:

GCC v3.3.4 - official sources.

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 to 1.1.1.3
    r1475 r1476  
     12004-05-31  Release Manager
     2
     3        * GCC 3.3.4 Released.
     4
     52004-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
    1122004-02-14  Release Manager
    213
  • branches/GNU/src/gcc/libobjc/configure

    • Property cvs2svn:cvs-rev changed from 1.1.1.2 to 1.1.1.3
    r1475 r1476  
    16431643linux-gnu*)
    16441644  case $host_cpu in
    1645   alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* )
     1645  alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | sh* )
    16461646    lt_cv_deplibs_check_method=pass_all ;;
    16471647  *)
  • branches/GNU/src/gcc/libobjc/objc/hash.h

    • Property cvs2svn:cvs-rev changed from 1.1.1.2 to 1.1.1.3
    r1475 r1476  
    173173  unsigned int ret = 0;
    174174  unsigned int ctr = 0;
     175  const char *ckey = key;
    175176       
    176        
    177   while (*(char *) key) {
    178     ret ^= *(char *) key++ << ctr;
     177  while (*ckey) {
     178    ret ^= *ckey++ << ctr;
    179179    ctr = (ctr + 1) % sizeof (void *);
    180180  }
Note: See TracChangeset for help on using the changeset viewer.