> Date: Mon, 15 Aug 2011 10:43:35 +0200 (CEST) > From: Richard Guenther <rguent...@suse.de>
> On Mon, 15 Aug 2011, Hans-Peter Nilsson wrote: > > So, ok as is? > > If not, would you preapprove tree-dumping decl_uids only at a > > higher dump verbosity level? > > Ok. Yes, definitely, a patch to do decl_uids dumping only at > TDF_UID is pre-approved (you'd need to adjust some testcases > I guess). Bah, should've looked closer; there already was a TDF_NUID gate there... Looks like this is a problem that is supposed to be handled by appending -nouid to the dump option. See asm-1.c which is the only other tree-ssa instance grepping for a number. So, the following is therefore committed as obvious: testsuite: * gcc.dg/tree-ssa/vrp61.c: : Use -fdump-tree-vrp1-nouid instead of -fdump-tree-vrp1. Index: gcc.dg/tree-ssa/vrp61.c =================================================================== --- gcc.dg/tree-ssa/vrp61.c (revision 177757) +++ gcc.dg/tree-ssa/vrp61.c (working copy) @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2 -fdump-tree-vrp1" } */ +/* { dg-options "-O2 -fdump-tree-vrp1-nouid" } */ int f (int x, int y) { brgds, H-P