This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

libiberty patch from binutils



Here's a minor patch that went into binutils's libiberty sources.   I'm
sucking it into our libiberty tree...


        * splay-tree.c (splay_tree_insert): Add initialization to avoid
        warning.

Index: splay-tree.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/libiberty/splay-tree.c,v
retrieving revision 1.9
diff -c -3 -p -r1.9 splay-tree.c
*** splay-tree.c	1999/04/02 15:18:05	1.9
--- splay-tree.c	1999/07/26 17:53:33
***************
*** 1,5 ****
  /* A splay-tree datatype.  
!    Copyright (C) 1998 Free Software Foundation, Inc.
     Contributed by Mark Mitchell (mark@markmitchell.com).
  
  This file is part of GNU CC.
--- 1,5 ----
  /* A splay-tree datatype.  
!    Copyright (C) 1998, 1999 Free Software Foundation, Inc.
     Contributed by Mark Mitchell (mark@markmitchell.com).
  
  This file is part of GNU CC.
*************** splay_tree_insert (sp, key, value)
*** 264,270 ****
       splay_tree_key key;
       splay_tree_value value;
  {
!   int comparison;
  
    splay_tree_splay (sp, key);
  
--- 264,270 ----
       splay_tree_key key;
       splay_tree_value value;
  {
!   int comparison = 0;
  
    splay_tree_splay (sp, key);
  



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]