Hi the following patch removes the 'state' print for
-ftree-tree-vectorize option which does not make sense anymore. Ok for
trunk?

thanks,

David
Index: ChangeLog
===================================================================
--- ChangeLog   (revision 207581)
+++ ChangeLog   (working copy)
@@ -1,3 +1,7 @@
+2014-02-06  Xinliang David Li  <davi...@google.com>
+
+       * opts.c (print_filtered_help): Fix help message bug.
+
 2014-02-06  Kyrylo Tkachov  <kyrylo.tkac...@arm.com>
 
        * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): New table.
Index: opts.c
===================================================================
--- opts.c      (revision 207581)
+++ opts.c      (working copy)
@@ -1060,8 +1060,11 @@ print_filtered_help (unsigned int includ
                             "%#x", * (int *) flag_var);
                }
              else
-               strcat (new_help, option_enabled (i, opts)
-                       ? _("[enabled]") : _("[disabled]"));
+               {
+                 if (i != OPT_ftree_vectorize)
+                   strcat (new_help, option_enabled (i, opts)
+                           ? _("[enabled]") : _("[disabled]"));
+               }
            }
 
          help = new_help;

Reply via email to