re PR target/81121 (ICE: in extract_insn, at recog.c:2311)
authorJakub Jelinek <jakub@redhat.com>
Tue, 20 Jun 2017 07:04:27 +0000 (09:04 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 20 Jun 2017 07:04:27 +0000 (09:04 +0200)
PR target/81121
* config/i386/i386.md (TARGET_USE_VECTOR_CONVERTS float si->{sf,df}
splitter): Require TARGET_SSE2 in the condition.

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

From-SVN: r249396

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

index 5af9611..06e0cec 100644 (file)
@@ -1,3 +1,9 @@
+2017-06-20  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/81121
+       * config/i386/i386.md (TARGET_USE_VECTOR_CONVERTS float si->{sf,df}
+       splitter): Require TARGET_SSE2 in the condition.
+
 2017-06-20  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        PR target/79799
index adc13a9..40a20d0 100644 (file)
 (define_split
   [(set (match_operand:MODEF 0 "sse_reg_operand")
        (float:MODEF (match_operand:SI 1 "nonimmediate_operand")))]
-  "TARGET_USE_VECTOR_CONVERTS
+  "TARGET_SSE2
+   && TARGET_USE_VECTOR_CONVERTS
    && optimize_function_for_speed_p (cfun)
    && reload_completed
    && (MEM_P (operands[1]) || TARGET_INTER_UNIT_MOVES_TO_VEC)
index 0809b2c..330a108 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-20  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/81121
+       * gcc.target/i386/pr81121.c: New test.
+
 2017-06-20  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        PR target/79799
diff --git a/gcc/testsuite/gcc.target/i386/pr81121.c b/gcc/testsuite/gcc.target/i386/pr81121.c
new file mode 100644 (file)
index 0000000..aca74e9
--- /dev/null
@@ -0,0 +1,10 @@
+/* PR target/81121 */
+/* { dg-do compile } */
+/* { dg-options "-O0 -march=amdfam10 -mno-sse2" } */
+
+void
+foo (short *x, short *y)
+{
+  float a = 0;
+  y[0] = x[0] * a;
+}