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]

tiny garbage deletion patch


This patch removes #if 0 code which was commented out in 1994 as bogus.
It does nothing else.

Changelog entry:
 2001-07-17  Nathanael Nerode <neroden@twcny.rr.com>
 	* tree.c: removed #if 0 code last used in 1994

Patch:
Index: gcc/cp/tree.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/tree.c,v
retrieving revision 1.245
diff -c -3 -p -r1.245 tree.c
*** tree.c	2001/07/06 06:36:46	1.245
--- tree.c	2001/07/17 10:24:55
*************** break_out_calls (exp)
*** 353,367 ****
        return exp;
  
      case 'd':  /* A decl node */
- #if 0                               /* This is bogus.  jason 9/21/94 */
- 
-       t1 = break_out_calls (DECL_INITIAL (exp));
-       if (t1 != DECL_INITIAL (exp))
- 	{
- 	  exp = copy_node (exp);
- 	  DECL_INITIAL (exp) = t1;
- 	}
- #endif
        return exp;
  
      case 'b':  /* A block node */
--- 353,358 ----


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