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]
Other format: [Raw text]

[tree-ssa] Enable tree-ssa opts for C++


Whee.  Finally.

You should get the same testresults as before this patch.  If you 
don't, then let me know ASAP.

	* optimize.c (optimize_function_tree): Do run the tree-ssa
	optimizers.

Index: optimize.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/optimize.c,v
retrieving revision 1.81.10.17
diff -c -3 -p -r1.81.10.17 optimize.c
*** optimize.c	16 Apr 2003 15:26:00 -0000	1.81.10.17
--- optimize.c	21 Apr 2003 23:06:59 -0000
*************** optimize_function (tree fn)
*** 95,101 ****
  	}
  
        /* Invoke the SSA tree optimizer.  */
!       if (optimize >= 1 && 0)
  	optimize_function_tree (fn);
      }
  
--- 95,101 ----
  	}
  
        /* Invoke the SSA tree optimizer.  */
!       if (optimize >= 1)
  	optimize_function_tree (fn);
      }
  




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