]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/i386/i386.md (mmx_pinsrw): Output operands in correct
authorgrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Nov 2000 11:30:02 +0000 (11:30 +0000)
committergrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Nov 2000 11:30:02 +0000 (11:30 +0000)
        order for -mintel-syntax.  Remove comment now that the operand
        order has been checked.
        (mmx_pextrw): Likewise.
        (mmx_pshufw): Likewise.

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

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

index 2f6938dd6e8ffbd695f93bb411678cee429663c4..7fda91053e10796bc5325a59c0f230bc1e7376da 100644 (file)
@@ -1,3 +1,11 @@
+2000-11-09  Graham Stott  <grahams@redhat.com>
+
+        * config/i386/i386.md (mmx_pinsrw): Output operands in correct
+       order for -mintel-syntax.  Remove comment now that the operand
+       order has been checked.
+       (mmx_pextrw): Likewise.
+       (mmx_pshufw): Likewise.
+
 2000-11-09  Jakub Jelinek  <jakub@redhat.com>
 
        * builtins.c (c_strlen): Use TREE_STRING_LENGTH - 1 for max.
index 9f662a390fe8b8cdaf7db4b9c8c477df71117a20..0e70845b5d46c02b03757c1437f7d3e8be3e1f19 100644 (file)
                         (truncate:HI (match_operand:SI 2 "nonimmediate_operand" "rm")))
                        (match_operand:SI 3 "immediate_operand" "i")))]
   "TARGET_SSE"
-  ;; @@@ check operand order for intel/nonintel syntax.
-  "pinsrw\\t%3, {%2, %0|%0, %2}"
+  "pinsrw\\t{%3, %2, %0|%0, %2, %3}"
   [(set_attr "type" "sse")])
 
 (define_insn "mmx_pextrw"
                                       (parallel
                                        [(match_operand:SI 2 "immediate_operand" "i")]))))]
   "TARGET_SSE"
-  ;; @@@ check operand order for intel/nonintel syntax.
-  "pextrw\\t%2, {%1, %0|%0, %1}"
+  "pextrw\\t{%2, %1, %0|%0, %1, %2}"
   [(set_attr "type" "sse")])
 
 (define_insn "mmx_pshufw"
                      (match_operand:V4HI 2 "nonimmediate_operand" "ym")
                      (match_operand:SI 3 "immediate_operand" "i")] 41))]
   "TARGET_SSE"
-  ;; @@@ check operand order for intel/nonintel syntax
-  "pshufw\\t %3,{%2, %0|%0, %2}"
+  "pshufw\\t{%3, %2, %0|%0, %2, %3}"
   [(set_attr "type" "sse")])