Commit 7372c0a4 by Uros Bizjak Committed by Uros Bizjak

re PR target/30041 (FAIL: gcc.target/i386/sse3-movddup.c (internal compiler error))

        PR target/30041
        * config/i386/sse.md ("*sse3_movddup"): Use operands[0] and
        operands[1] in insn constraint.  Correct type attribute to sselog1.

From-SVN: r119468
parent 6bd70157
2006-12-03 Uros Bizjak <ubizjak@gmail.com>
PR target/30041
* config/i386/sse.md ("*sse3_movddup"): Use operands[0] and
operands[1] in insn constraint. Correct type attribute to sselog1.
2006-12-02 H.J. Lu <hongjiu.lu@intel.com>
PR target/30040
......
......@@ -2167,11 +2167,11 @@
(match_dup 1))
(parallel [(const_int 0)
(const_int 2)])))]
"TARGET_SSE3 && !(MEM_P (operands[1]) && MEM_P (operands[2]))"
"TARGET_SSE3 && !(MEM_P (operands[0]) && MEM_P (operands[1]))"
"@
movddup\t{%1, %0|%0, %1}
#"
[(set_attr "type" "sselog,ssemov")
[(set_attr "type" "sselog1,ssemov")
(set_attr "mode" "V2DF")])
(define_split
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment