summaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>2002-12-01 03:52:04 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2002-12-01 03:52:04 +0000
commitf6318a2baf8e87c2fd7f02308b3c2d05569684a2 (patch)
treed8581137ab08a1eee4bc607f308d5bd542f6c4c1 /gcc/cfg.c
parentc17707f1d1d23a434065e94d44221c44d5faf303 (diff)
downloadgcc-f6318a2baf8e87c2fd7f02308b3c2d05569684a2.tar.gz
cfg.c (dump_flow_info): Use max_reg_num () to determine the largest pseudo register number plus 1.
* cfg.c (dump_flow_info): Use max_reg_num () to determine the largest pseudo register number plus 1. From-SVN: r59669
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index c6ffdc22de3..77d92aa4d42 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -502,6 +502,7 @@ dump_flow_info (file)
FILE *file;
{
int i;
+ int max_regno = max_reg_num ();
basic_block bb;
static const char * const reg_class_names[] = REG_CLASS_NAMES;