diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-19 18:09:53 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-19 18:09:53 +0000 |
commit | 8ff5fb9be1dd1f08cffd0ae8843d0c9ea1ef781d (patch) | |
tree | 24ee3d5600efd780be279b524870e8b27ced0f87 /gcc/config/pa/pa.c | |
parent | 1e1d5623e6d992f74adf82223f07c4e298205672 (diff) | |
download | linaro-gcc-8ff5fb9be1dd1f08cffd0ae8843d0c9ea1ef781d.tar.gz linaro-gcc-8ff5fb9be1dd1f08cffd0ae8843d0c9ea1ef781d.tar.bz2 linaro-gcc-8ff5fb9be1dd1f08cffd0ae8843d0c9ea1ef781d.zip |
* config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
long non-pic millicode calls.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206779 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa/pa.c')
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index e137220a890..d17a1af43c4 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; |