From: danglin Date: Tue, 7 Jun 2016 01:56:01 +0000 (+0000) Subject: * config/pa/pa.md (call): Generate indirect long calls to non-local X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb587c648398fd8a348e1fd965df3f3208ec7f9f;p=thirdparty%2Fgcc.git * config/pa/pa.md (call): Generate indirect long calls to non-local functions on TARGET_64BIT. (call_value): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@237164 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a312649e1d6..edc45f5f8e9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-06-06 John David Anglin + + * config/pa/pa.md (call): Generate indirect long calls to non-local + functions on TARGET_64BIT. + (call_value): Likewise. + 2016-06-06 John David Anglin * config/pa/pa.md (call_val_reg_64bit): Remove "reg: DI " clobber from diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 4e714cd71c31..493b764ee69c 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -7014,7 +7014,7 @@ add,l %2,%3,%3\;bv,n %%r0(%3)" op = XEXP (operands[0], 0); /* Generate indirect long calls to non-local functions. */ - if (!TARGET_64BIT && TARGET_LONG_CALLS && GET_CODE (op) == SYMBOL_REF) + if (TARGET_LONG_CALLS && GET_CODE (op) == SYMBOL_REF) { tree call_decl = SYMBOL_REF_DECL (op); if (!(call_decl && targetm.binds_local_p (call_decl))) @@ -7517,7 +7517,7 @@ add,l %2,%3,%3\;bv,n %%r0(%3)" call_powf = true; /* Generate indirect long calls to non-local functions. */ - else if (!TARGET_64BIT && TARGET_LONG_CALLS) + else if (TARGET_LONG_CALLS) { tree call_decl = SYMBOL_REF_DECL (op); if (!(call_decl && targetm.binds_local_p (call_decl)))