From f215b2f779fa1892a86ae7baf3001251beccc303 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sun, 20 Nov 1994 22:59:27 -0700 Subject: [PATCH] pa.c (output_call): When emitting an inline long-call... * pa.c (output_call): When emitting an inline long-call, use LP% and RP% prefixes to get the function's address. From-SVN: r8533 --- gcc/config/pa/pa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index d70dad687bf..f18451d3663 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3941,7 +3941,8 @@ output_call (insn, call_dest, return_pointer) /* Now emit the inline long-call. */ xoperands[0] = call_dest; - output_asm_insn ("ldil L%%%0,%%r22\n\tldo R%%%0(%%r22),%%r22", xoperands); + output_asm_insn ("ldil LP%%%0,%%r22\n\tldo RP%%%0(%%r22),%%r22", + xoperands); /* If TARGET_MILLICODE_LONG_CALLS, then we must use a long-call sequence to call dyncall! */ -- 2.30.2