From ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 6 Apr 1994 07:08:16 -0400 Subject: [PATCH] (block_alloc): Avoid #ifdef HARD_REG_SET. From-SVN: r6976 --- gcc/local-alloc.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index a7b272f8de45..75ffedbcc3f2 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. -- 2.47.2