diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-08 18:08:42 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-08 18:08:42 -0400 |
commit | 69887ad921a264512d90b5087087476d2deead17 (patch) | |
tree | f6141f857be19f898559843011a72ebd7561ab55 /gcc/local-alloc.c | |
parent | e0bfcea5c918f2a20437d58cdb22ad83e4851eb5 (diff) | |
download | gcc-69887ad921a264512d90b5087087476d2deead17.zip gcc-69887ad921a264512d90b5087087476d2deead17.tar.gz gcc-69887ad921a264512d90b5087087476d2deead17.tar.bz2 |
Remove previous Berg change.
From-SVN: r6998
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 75ffedb..a7b272f 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1131,7 +1131,11 @@ block_alloc (b) /* Initialize table of hardware registers currently live. */ - COPY_HARD_REG_SET (regs_live, *basic_block_live_at_start[b]); +#ifdef HARD_REG_SET + regs_live = *basic_block_live_at_start[b]; +#else + COPY_HARD_REG_SET (regs_live, basic_block_live_at_start[b]); +#endif /* This loop scans the instructions of the basic block and assigns quantities to registers. |