From: Richard Kenner Date: Wed, 6 Apr 1994 11:09:32 +0000 (-0400) Subject: (mark_target_live_regs): Avoid #ifdef HARD_REG_SET. X-Git-Tag: misc/cutover-egcs-0~6966 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1923e516f4394c09231d6a62dc0c1d641051827e;p=thirdparty%2Fgcc.git (mark_target_live_regs): Avoid #ifdef HARD_REG_SET. From-SVN: r6977 --- diff --git a/gcc/reorg.c b/gcc/reorg.c index 71fc4f3d7b5a..3e6ff8ac7c22 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -1,6 +1,6 @@ /* Perform instruction reorganizations for delay slot filling. - Copyright (C) 1992, 1993 Free Software Foundation, Inc. - Contributed by Richard Kenner (kenner@nyu.edu). + Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. + Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu). Hacked by Michael Tiemann (tiemann@cygnus.com). This file is part of GNU CC. @@ -2399,11 +2399,7 @@ mark_target_live_regs (target, res) marked live, plus live pseudo regs that have been renumbered to hard regs. */ -#ifdef HARD_REG_SET - current_live_regs = *regs_live; -#else - COPY_HARD_REG_SET (current_live_regs, regs_live); -#endif + COPY_HARD_REG_SET (current_live_regs, *regs_live); for (offset = 0, i = 0; offset < regset_size; offset++) {