From: John David Anglin Date: Sun, 19 Jan 2014 18:09:53 +0000 (+0000) Subject: pa.c (pa_attr_length_millicode_call): Correct length of long non-pic millicode calls. X-Git-Tag: releases/gcc-4.9.0~1577 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=925cb97d7926eb016b3e7a4dd3e59c09d86fb8dd;p=gcc.git pa.c (pa_attr_length_millicode_call): Correct length of long non-pic millicode calls. * config/pa/pa.c (pa_attr_length_millicode_call): Correct length of long non-pic millicode calls. From-SVN: r206779 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9be064402733..652d2c902aa5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-01-19 John David Anglin + + * config/pa/pa.c (pa_attr_length_millicode_call): Correct length of + long non-pic millicode calls. + 2014-01-19 Jan-Benedict Glaw * config/vax/vax.h (FUNCTION_ARG_REGNO_P): Fix unused variable warning. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index e137220a8904..d17a1af43c40 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -7534,7 +7534,7 @@ pa_attr_length_millicode_call (rtx insn) if (!TARGET_LONG_CALLS && distance < MAX_PCREL17F_OFFSET) return 8; - if (TARGET_LONG_ABS_CALL && !flag_pic) + if (!flag_pic) return 12; return 24;