From: Jeff Law Date: Fri, 16 Oct 1992 06:23:57 +0000 (-0600) Subject: pa.md (call define_expands): If TARGET_LONG_CALLS, then force the address of the... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cf2759eb4fb4b682a56182ee4a0e1a14e792333;p=gcc.git pa.md (call define_expands): If TARGET_LONG_CALLS, then force the address of the function into a register. * pa.md (call define_expands): If TARGET_LONG_CALLS, then force the address of the function into a register. From-SVN: r2486 --- diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 7cdbcf142cc..c870e507520 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -2333,7 +2333,11 @@ "" " { - operands[0] = gen_rtx (MEM, SImode, XEXP (operands[0], 0)); + if (TARGET_LONG_CALLS) + operands[0] = gen_rtx (MEM, SImode, + force_reg (SImode, XEXP (operands[0], 0))); + else + operands[0] = gen_rtx (MEM, SImode, XEXP (operands[0], 0)); }") (define_insn "" @@ -2365,7 +2369,11 @@ "" " { - operands[1] = gen_rtx (MEM, SImode, XEXP (operands[1], 0)); + if (TARGET_LONG_CALLS) + operands[1] = gen_rtx (MEM, SImode, + force_reg (SImode, XEXP (operands[1], 0))); + else + operands[1] = gen_rtx (MEM, SImode, XEXP (operands[1], 0)); }") (define_insn ""