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/libiberty/splay-tree.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    235235     void *data ATTRIBUTE_UNUSED;
    236236{
    237   return xmalloc (size);
     237  return (void *) xmalloc (size);
    238238}
    239239
     
    483483
    484484/* Return the immediate successor KEY, or NULL if there is no
    485    predecessor.  KEY need not be present in the tree.  */
     485   successor.  KEY need not be present in the tree.  */
    486486
    487487splay_tree_node
     
    493493  splay_tree_node node;
    494494
    495   /* If the tree is empty, there is certainly no predecessor.  */
     495  /* If the tree is empty, there is certainly no successor.  */
    496496  if (!sp->root)
    497497    return NULL;
Note: See TracChangeset for help on using the changeset viewer.