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
This commit is contained in:
John David Anglin 2014-01-19 18:09:53 +00:00
parent 7c5425fab7
commit 925cb97d79
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-01-19 John David Anglin <danglin@gcc.gnu.org>
* config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
long non-pic millicode calls.
2014-01-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/vax/vax.h (FUNCTION_ARG_REGNO_P): Fix unused variable warning.

View file

@ -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;