Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libobjc/hash.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    4848  /* Pass me a value greater than 0 and a power of 2.  */
    4949  assert (size);
    50   assert (!(size & (size - 1)));
     50  assert (! (size & (size - 1)));
    5151
    5252  /* Allocate the cache structure.  calloc insures
     
    197197      } else
    198198        prev = node, node = node->next;
    199     } while (!removed && node);
     199    } while (! removed && node);
    200200    assert (removed);
    201201  }
     
    211211  /* If the scan is being started then reset the last node
    212212     visitied pointer and bucket index.  */
    213   if (!node)
     213  if (! node)
    214214    cache->last_bucket  = 0;
    215215
     
    259259      } else
    260260        node = node->next;
    261     } while (!retval && node);
     261    } while (! retval && node);
    262262
    263263  return retval;
Note: See TracChangeset for help on using the changeset viewer.