OSDN Git Service

2008-05-14 H.J. Lu <hongjiu.lu@intel.com>
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 May 2008 21:46:12 +0000 (21:46 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 May 2008 21:46:12 +0000 (21:46 +0000)
* config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only.

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

gcc/ChangeLog
gcc/config/i386/sse.md

index cfc8b09..ad94d8d 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-14  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only.
+
 2008-05-14  Michael Meissner  <michael.meissner@amd.com>
            Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
 
index 6ee090a..23a63d8 100644 (file)
            (match_operand:DI 2 "nonimmediate_operand" "rm"))
          (match_operand:V2DI 1 "register_operand" "0")
          (match_operand:SI 3 "const_pow2_1_to_2_operand" "n")))]
-  "TARGET_SSE4_1"
+  "TARGET_SSE4_1 && TARGET_64BIT"
 {
   operands[3] = GEN_INT (exact_log2 (INTVAL (operands[3])));
   return "pinsrq\t{%3, %2, %0|%0, %2, %3}";