OSDN Git Service

(block_alloc): Avoid #ifdef HARD_REG_SET.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Apr 1994 11:08:16 +0000 (11:08 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Apr 1994 11:08:16 +0000 (11:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6976 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/local-alloc.c

index a7b272f..75ffedb 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.