diff options
author | Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> | 1998-09-16 00:31:22 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-15 18:31:22 -0600 |
commit | f15ebf657dae6ed2812a42e5b306229197787e12 (patch) | |
tree | e9a35627a7e4df73a67c70a1fc50623350278360 /gcc/global.c | |
parent | b0e982be47fc5fe1747ce9dd1d7b08d50a511d94 (diff) | |
download | gcc-f15ebf657dae6ed2812a42e5b306229197787e12.zip gcc-f15ebf657dae6ed2812a42e5b306229197787e12.tar.gz gcc-f15ebf657dae6ed2812a42e5b306229197787e12.tar.bz2 |
global.c (reg_allocno): Now static.
* global.c (reg_allocno): Now static.
* reload1.c (reg_allocno): Delete declaration.
(order_regs_for_reload): Take no arguments. Don't treat regs
allocated by global differently than those allocated by local-alloc.
From-SVN: r22446
Diffstat (limited to 'gcc/global.c')
-rw-r--r-- | gcc/global.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/global.c b/gcc/global.c index b069584..a3d7e02 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -78,7 +78,7 @@ static int max_allocno; /* Indexed by (pseudo) reg number, gives the allocno, or -1 for pseudo registers which are not to be allocated. */ -int *reg_allocno; +static int *reg_allocno; /* Indexed by allocno, gives the reg number. */ |