diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2006-12-03 20:40:06 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2006-12-03 20:40:06 +0100 |
commit | 7372c0a430fa6cc063e7ae1dffe4ffb46bcbbd9e (patch) | |
tree | c5ec88b5f6d2a7b6c8857af389b936b1309e461d /gcc | |
parent | 6bd70157d787279821301c22a8f8315af4ea1cd1 (diff) | |
download | gcc-7372c0a430fa6cc063e7ae1dffe4ffb46bcbbd9e.zip gcc-7372c0a430fa6cc063e7ae1dffe4ffb46bcbbd9e.tar.gz gcc-7372c0a430fa6cc063e7ae1dffe4ffb46bcbbd9e.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/sse.md | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index eebf3f8..d4f6b6b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +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 diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 460937f..a17e7a9 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -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 |