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]

Add Optimization attribute to new optimizations in common.opt


Hi Guys,

  I am applying the following patch as obvious.  It adds the
  "Optimization" attribute to the new optimizations that were recently
  added to common.opt.

Cheers
  Nick

gcc/ChangeLog
2007-06-28  Nick Clifton  <nickc@redhat.com>

	* common.opt (fipa-matrix-reorg): Add Optimization attribute.
	(fdce, fdse, fpredictive-commoning): Likewise.

Index: common.opt
===================================================================
--- common.opt	(revision 126072)
+++ common.opt	(working copy)
@@ -597,7 +597,7 @@ Common Report Var(flag_ipa_type_escape) 
 Type based escape and alias analysis
 
 fipa-matrix-reorg
-Common Report Var(flag_ipa_matrix_reorg)
+Common Report Var(flag_ipa_matrix_reorg) Optimization
 Perform matrix layout flattening and transposing based
 on profiling information.
 
@@ -669,11 +669,11 @@ Common RejectNegative Report Var(flag_mu
 Ignore read operations when inserting mudflap instrumentation
 
 fdce
-Common Var(flag_dce) Init(1)
+Common Var(flag_dce) Init(1) Optimization
 Use the RTL dead code elimination pass
 
 fdse
-Common Var(flag_dse) Init(1)
+Common Var(flag_dse) Init(1) Optimization
 Use the RTL dead store elimination pass
 
 freschedule-modulo-scheduled-loops
@@ -745,7 +745,7 @@ Common Report Var(flag_pie,1) VarExists
 Generate position-independent code for executables if possible (small mode)
 
 fpredictive-commoning
-Common Report Var(flag_predictive_commoning)
+Common Report Var(flag_predictive_commoning) Optimization
 Run predictive commoning optimization.
 
 fprefetch-loop-arrays


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