]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(block_alloc): Avoid #ifdef HARD_REG_SET.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 6 Apr 1994 11:08:16 +0000 (07:08 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 6 Apr 1994 11:08:16 +0000 (07:08 -0400)
From-SVN: r6976

gcc/local-alloc.c

index a7b272f8de456912e9113621460b5946df733f68..75ffedbcc3f2df29220fa8bc4bf75d70523c0af4 100644 (file)
@@ -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.