From b0aa1f25eb6bd369e62fa3f2e5b32b21ef197e17 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Fri, 18 Jun 1999 08:45:46 -0700 Subject: [PATCH] alpha.c (alpha_expand_block_move): Use get_insns rather than gen_sequence as argument to emit_no_conflict_block. * alpha.c (alpha_expand_block_move): Use get_insns rather than gen_sequence as argument to emit_no_conflict_block. From-SVN: r27597 --- gcc/ChangeLog | 5 +++++ gcc/config/alpha/alpha.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b11d109189ef..c169d7536501 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 18 15:44:18 1999 Richard Henderson + + * alpha.c (alpha_expand_block_move): Use get_insns rather than + gen_sequence as argument to emit_no_conflict_block. + Fri Jun 18 06:48:30 1999 Kaveh R. Ghazi * fixinc/inclhack.def (ioctl_fix_ctrl): Fix the definition of _*ISCTRL(). diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index acbd549fb400..24178f16d2aa 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2130,7 +2130,7 @@ alpha_expand_block_move (operands) start_sequence (); emit_move_insn (gen_lowpart (DImode, tmp), data_regs[0]); emit_move_insn (gen_highpart (DImode, tmp), data_regs[1]); - seq = gen_sequence (); + seq = get_insns (); end_sequence (); emit_no_conflict_block (seq, tmp, data_regs[0], -- 2.47.2