From 458c16f71e1ba5e22baee6038f0042e97856c419 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 26 Jun 1996 17:25:22 -0600 Subject: Fix thinko in last change. From-SVN: r12335 --- gcc/config/pa/pa.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 79ebbcc..8c081b8 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -5290,7 +5290,11 @@ { operands[2] = gen_reg_rtx (SImode); if (GET_CODE (operands[1]) != REG) - force_reg (SImode, operands[1]); + { + rtx tmp = gen_reg_rtx (Pmode); + emit_move_insn (tmp, operands[1]); + operands[1] = tmp; + } }") (define_insn "" -- cgit v1.1