aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2007-11-05 06:34:34 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2007-11-05 06:34:34 +0000
commit9656bc0fdc7247299df8a105dff1f49d98f3e184 (patch)
tree3e02826a54aa84967ecf6803a34f8ea8eb963803 /gcc/cfg.c
parentdbf05723cd949ea625c55e4f349e3a2e2e3b157e (diff)
downloadgcc-9656bc0fdc7247299df8a105dff1f49d98f3e184.zip
gcc-9656bc0fdc7247299df8a105dff1f49d98f3e184.tar.gz
gcc-9656bc0fdc7247299df8a105dff1f49d98f3e184.tar.bz2
* cfg.c (dump_cfg_bb_info): Update bb_bitnames to match enum.
From-SVN: r129893
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 2bba39a..40e51a5 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -881,7 +881,9 @@ dump_cfg_bb_info (FILE *file, basic_block bb)
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;