OSDN Git Service

PR target/48678
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 19 Apr 2011 16:47:06 +0000 (16:47 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 19 Apr 2011 16:47:06 +0000 (16:47 +0000)
* config/i386/i386.md (movstrict<mode>): FAIL if operands[0]
is a SUBREG with non-MODE_INT mode inside of it.

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172721 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr48678.c [new file with mode: 0644]

index 5c44ebd..959d07b 100644 (file)
@@ -1,3 +1,9 @@
+2011-04-19  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/48678
+       * config/i386/i386.md (movstrict<mode>): FAIL if operands[0]
+       is a SUBREG with non-MODE_INT mode inside of it.
+
 2011-04-19  Martin Jambor  <mjambor@suse.cz>
 
        * ipa-cp.c (ipcp_process_devirtualization_opportunities): Devirtualize
index 0e0ceed..38bdcd3 100644 (file)
 {
   if (TARGET_PARTIAL_REG_STALL && optimize_function_for_speed_p (cfun))
     FAIL;
+  if (GET_CODE (operands[0]) == SUBREG
+      && GET_MODE_CLASS (GET_MODE (SUBREG_REG (operands[0]))) != MODE_INT)
+    FAIL;
   /* Don't generate memory->memory moves, go through a register */
   if (MEM_P (operands[0]) && MEM_P (operands[1]))
     operands[1] = force_reg (<MODE>mode, operands[1]);
index 71c4556..0d47ecf 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-19  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/48678
+       * gcc.target/i386/pr48678.c: New test.
+
 2011-04-19  Martin Jambor  <mjambor@suse.cz>
 
        * g++.dg/opt/devirt1.C: Bump to -O2, remove XFAIL.
diff --git a/gcc/testsuite/gcc.target/i386/pr48678.c b/gcc/testsuite/gcc.target/i386/pr48678.c
new file mode 100644 (file)
index 0000000..6f6727f
--- /dev/null
@@ -0,0 +1,16 @@
+/* PR target/48678 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -msse2" } */
+
+#include <emmintrin.h>
+
+typedef short T __attribute__((may_alias));
+struct S { __m128i d; };
+
+__m128i
+foo (short *x, struct S *y, __m128i *z)
+{
+  struct S s = *y;
+  ((T *) &s.d)[0] = *x;
+  return _mm_cmpeq_epi16 (s.d, *z);
+}