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] Remove TDF_LINENO from all


Hello,

dumps with TDF_LINENO look weird, so this patch removes it from all
setting.  Commited as obvious (at least it is surely harmless ;-)

Zdenek

	* tree-dump.c (dump_options): Remove TDF_LINENO from all setting.

Index: tree-dump.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-dump.c,v
retrieving revision 1.6.2.47
diff -c -3 -p -r1.6.2.47 tree-dump.c
*** tree-dump.c	5 Nov 2003 13:39:23 -0000	1.6.2.47
--- tree-dump.c	6 Nov 2003 15:04:20 -0000
*************** static const struct dump_option_value_in
*** 699,705 ****
    {"blocks", TDF_BLOCKS},
    {"vops", TDF_VOPS},
    {"lineno", TDF_LINENO},
!   {"all", ~(TDF_RAW | TDF_SLIM)},
    {NULL, 0}
  };
  
--- 699,705 ----
    {"blocks", TDF_BLOCKS},
    {"vops", TDF_VOPS},
    {"lineno", TDF_LINENO},
!   {"all", ~(TDF_RAW | TDF_SLIM | TDF_LINENO)},
    {NULL, 0}
  };
  


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