Commit 1923e516 by Richard Kenner

(mark_target_live_regs): Avoid #ifdef HARD_REG_SET.

From-SVN: r6977
parent ce940f3d
/* Perform instruction reorganizations for delay slot filling. /* Perform instruction reorganizations for delay slot filling.
Copyright (C) 1992, 1993 Free Software Foundation, Inc. Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
Contributed by Richard Kenner (kenner@nyu.edu). Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu).
Hacked by Michael Tiemann (tiemann@cygnus.com). Hacked by Michael Tiemann (tiemann@cygnus.com).
This file is part of GNU CC. This file is part of GNU CC.
...@@ -2399,11 +2399,7 @@ mark_target_live_regs (target, res) ...@@ -2399,11 +2399,7 @@ mark_target_live_regs (target, res)
marked live, plus live pseudo regs that have been renumbered to marked live, plus live pseudo regs that have been renumbered to
hard regs. */ hard regs. */
#ifdef HARD_REG_SET COPY_HARD_REG_SET (current_live_regs, *regs_live);
current_live_regs = *regs_live;
#else
COPY_HARD_REG_SET (current_live_regs, regs_live);
#endif
for (offset = 0, i = 0; offset < regset_size; offset++) for (offset = 0, i = 0; offset < regset_size; offset++)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment