diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-01-01 18:52:39 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-01-01 18:52:39 -0500 |
commit | f7627ef46dd4024a551493e12a6a65ea2b97c16d (patch) | |
tree | c4afac725b4237f938c62352deefe1296ad6f7fd /gcc/global.c | |
parent | c25a4c251b9d1b7d347d9f15d5abfa7d0cad4f5f (diff) | |
download | gcc-f7627ef46dd4024a551493e12a6a65ea2b97c16d.zip gcc-f7627ef46dd4024a551493e12a6a65ea2b97c16d.tar.gz gcc-f7627ef46dd4024a551493e12a6a65ea2b97c16d.tar.bz2 |
(reg_allocno): No longer static.
From-SVN: r10931
Diffstat (limited to 'gcc/global.c')
-rw-r--r-- | gcc/global.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/global.c b/gcc/global.c index 78da99b..534c36c 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -1,5 +1,5 @@ /* Allocate registers for pseudo-registers that span basic blocks. - Copyright (C) 1987, 1988, 1991, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 1988, 1991, 1994, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -75,7 +75,7 @@ static int max_allocno; /* Indexed by (pseudo) reg number, gives the allocno, or -1 for pseudo registers already allocated by local_allocate. */ -static int *reg_allocno; +int *reg_allocno; /* Indexed by allocno, gives the reg number. */ |