]> gcc.gnu.org Git - gcc.git/commitdiff
pa.c (pa_attr_length_millicode_call): Correct length of long non-pic millicode calls.
authorJohn David Anglin <danglin@gcc.gnu.org>
Sun, 19 Jan 2014 18:09:53 +0000 (18:09 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 19 Jan 2014 18:09:53 +0000 (18:09 +0000)
* config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
long non-pic millicode calls.

From-SVN: r206779

gcc/ChangeLog
gcc/config/pa/pa.c

index 9be0644027333c9ffe8bb46b02e19495bb575c5a..652d2c902aa587d442023c04e63b45e55a21141b 100644 (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.
index e137220a89049b4a1ad0980498dffbc69d9dd264..d17a1af43c40dea7749a5118b592fef26e679d5d 100644 (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;
This page took 0.078842 seconds and 5 git commands to generate.