]> git.ipfire.org Git - thirdparty/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:17:38 +0000 (18:17 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 19 Jan 2014 18:17:38 +0000 (18:17 +0000)
* config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
long non-pic millicode calls.

From-SVN: r206781

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

index 4c235bbe99e52b7c9c7d7ac92bf17248cf217ed6..5af3aaa482c1ea2c0d7e227b5effa73637e2981a 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-17  John David Anglin  <danglin@gcc.gnu.org>
 
        * config/pa/pa.c (pa_attr_length_indirect_call): Don't output a short
index ff706e6d634160cd05878945c77f46cfe0ab2481..9649cbc2468be6b9da712f82c569e2485d4e0fb6 100644 (file)
@@ -7475,7 +7475,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;