This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
update bb flag dump
- From: Alexandre Oliva <aoliva at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sat, 13 Oct 2007 06:16:12 -0300
- Subject: update bb flag dump
enum bb_flags was modified but the code that dumps information about
it wasn't updated. This patch fixes it, but it possibly adds too many
uninteresting flags.
Comments? Ok?
for gcc/ChangeLog
from Alexandre Oliva <aoliva@redhat.com>
* cfg.c (dump_cfg_bb_info): Update bb_bitnames to match enum.
Index: gcc/cfg.c
===================================================================
--- gcc/cfg.c.orig 2007-09-08 20:11:25.000000000 -0300
+++ gcc/cfg.c 2007-10-12 03:11:08.000000000 -0300
@@ -881,7 +881,9 @@ dump_cfg_bb_info (FILE *file, basic_bloc
bool first = true;
static const char * const bb_bitnames[] =
{
- "dirty", "new", "reachable", "visited", "irreducible_loop", "superblock"
+ "new", "reachable", "irreducible_loop", "superblock",
+ "nosched", "hot", "cold", "dup", "xlabel", "rtl",
+ "fwdr", "nothrd"
};
const unsigned n_bitnames = sizeof (bb_bitnames) / sizeof (char *);
edge e;
--
Alexandre Oliva http://www.lsd.ic.unicamp.br/~oliva/
FSF Latin America Board Member http://www.fsfla.org/
Red Hat Compiler Engineer aoliva@{redhat.com, gcc.gnu.org}
Free Software Evangelist oliva@{lsd.ic.unicamp.br, gnu.org}