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]

Restore whole-program to matrix reorg gate


Hi,

Added back the commented out whole-program flag to the optimization's 
gate.
Committed as obvious.
Razya

2007-10-15  Razya Ladelsky  <razya@il.ibm.com>

        * matrix-reorg.c (gate_matrix_reorg): Restore whole-program flag.


Index: matrix-reorg.c
===================================================================
--- matrix-reorg.c      (revision 129315)
+++ matrix-reorg.c      (working copy)
@@ -2314,7 +2314,7 @@
 static bool
 gate_matrix_reorg (void)
 {
-  return flag_ipa_matrix_reorg /*&& flag_whole_program */ ;
+  return flag_ipa_matrix_reorg && flag_whole_program;
 }

 struct tree_opt_pass pass_ipa_matrix_reorg = {


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