re PR middle-end/77377 (c-c++-common/pr59037.c ICEs with -fpic -msse on i686)
authorJakub Jelinek <jakub@redhat.com>
Tue, 30 Aug 2016 06:45:56 +0000 (08:45 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 30 Aug 2016 06:45:56 +0000 (08:45 +0200)
PR middle-end/77377
* simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
constant pool reference return x instead of c.

* gcc.target/i386/pr77377.c: New test.

From-SVN: r239854

gcc/ChangeLog
gcc/simplify-rtx.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr77377.c [new file with mode: 0644]

index b7117b492957a09af4c305f71376cee23abd1fed..347c7c6a50dcb1992958d841e3fc586dcde2a653 100644 (file)
@@ -1,3 +1,9 @@
+2016-08-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/77377
+       * simplify-rtx.c (avoid_constant_pool_reference): For out of bounds
+       constant pool reference return x instead of c.
+
 2016-08-29  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): Do not
index 2085b997416d0275633541eea8e4e90154c88f9b..8daef97b473d6ee1c1abb8f6f557f496bb85f374 100644 (file)
@@ -251,15 +251,14 @@ avoid_constant_pool_reference (rtx x)
       /* If we're accessing the constant in a different mode than it was
          originally stored, attempt to fix that up via subreg simplifications.
          If that fails we have no choice but to return the original memory.  */
-      if ((offset != 0 || cmode != GET_MODE (x))
-         && offset >= 0 && offset < GET_MODE_SIZE (cmode))
+      if (offset == 0 && cmode == GET_MODE (x))
+       return c;
+      else if (offset >= 0 && offset < GET_MODE_SIZE (cmode))
         {
           rtx tem = simplify_subreg (GET_MODE (x), c, cmode, offset);
           if (tem && CONSTANT_P (tem))
             return tem;
         }
-      else
-        return c;
     }
 
   return x;
index c62855c522da00b3c15b349e0d487f21938ff511..7a435819a6810102f20e1f1ceb282de03f1ecb4e 100644 (file)
@@ -1,5 +1,8 @@
 2016-08-30  Jakub Jelinek  <jakub@redhat.com>
 
+       PR middle-end/77377
+       * gcc.target/i386/pr77377.c: New test.
+
        PR debug/77389
        * g++.dg/debug/dwarf2/template-params-12f.C: Pass -gno-strict-dwarf
        in dg-options.
diff --git a/gcc/testsuite/gcc.target/i386/pr77377.c b/gcc/testsuite/gcc.target/i386/pr77377.c
new file mode 100644 (file)
index 0000000..4f7eaa4
--- /dev/null
@@ -0,0 +1,6 @@
+/* PR middle-end/77377 */
+/* { dg-do compile } */
+/* { dg-options "-O3 -msse" } */
+/* { dg-additional-options "-fpic" { target fpic } } */
+
+#include "../../c-c++-common/pr59037.c"