diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-06 07:08:16 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-06 07:08:16 -0400 |
commit | ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6 (patch) | |
tree | 1cd5d40f13fd164302b1dac1a29d7ed912fa23da /gcc/local-alloc.c | |
parent | 22d656b07461be39134e2b7bd5518d508b78c042 (diff) | |
download | gcc-ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6.zip gcc-ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6.tar.gz gcc-ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6.tar.bz2 |
(block_alloc): Avoid #ifdef HARD_REG_SET.
From-SVN: r6976
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index a7b272f..75ffedb 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1131,11 +1131,7 @@ block_alloc (b) /* Initialize table of hardware registers currently live. */ -#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 + COPY_HARD_REG_SET (regs_live, *basic_block_live_at_start[b]); /* This loop scans the instructions of the basic block and assigns quantities to registers. |