diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-05 06:34:34 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-05 06:34:34 +0000 |
commit | 5d683f87bc2028981aae8f550965a3c6eae374e6 (patch) | |
tree | 3e02826a54aa84967ecf6803a34f8ea8eb963803 /gcc/cfg.c | |
parent | 29b51ae5097cd3782387f82e73b717f0f6eb6b1a (diff) | |
download | gcc-5d683f87bc2028981aae8f550965a3c6eae374e6.tar.gz |
* cfg.c (dump_cfg_bb_info): Update bb_bitnames to match enum.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129893 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 2bba39af03a..40e51a52041 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; |