From: Richard Kenner Date: Wed, 6 Apr 1994 11:08:16 +0000 (-0400) Subject: (block_alloc): Avoid #ifdef HARD_REG_SET. X-Git-Tag: misc/cutover-egcs-0~6967 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce940f3d1f12e1cb1062bc5edbff2dfe07c361a6;p=thirdparty%2Fgcc.git (block_alloc): Avoid #ifdef HARD_REG_SET. From-SVN: r6976 --- 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.