Commit 925cb97d by John David Anglin

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
parent 7c5425fa
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment