diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2007-11-05 06:34:34 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2007-11-05 06:34:34 +0000 |
commit | 9656bc0fdc7247299df8a105dff1f49d98f3e184 (patch) | |
tree | 3e02826a54aa84967ecf6803a34f8ea8eb963803 | |
parent | dbf05723cd949ea625c55e4f349e3a2e2e3b157e (diff) | |
download | gcc-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
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cfg.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e811718..42c79ff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-11-05 Alexandre Oliva <aoliva@redhat.com> + + * cfg.c (dump_cfg_bb_info): Update bb_bitnames to match enum. + 2007-11-04 Andrew Pinski <pinskia@gmail.com> PR middle-end/32931 @@ -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; |