diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2014-01-19 18:09:53 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2014-01-19 18:09:53 +0000 |
commit | 925cb97d7926eb016b3e7a4dd3e59c09d86fb8dd (patch) | |
tree | 24ee3d5600efd780be279b524870e8b27ced0f87 /gcc | |
parent | 7c5425fab70b1134c5a544ed5ce35693ea895eb7 (diff) | |
download | gcc-925cb97d7926eb016b3e7a4dd3e59c09d86fb8dd.zip gcc-925cb97d7926eb016b3e7a4dd3e59c09d86fb8dd.tar.gz gcc-925cb97d7926eb016b3e7a4dd3e59c09d86fb8dd.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9be0644..652d2c9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index e137220..d17a1af 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; |