diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2007-07-12 20:46:46 +0200 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2007-07-12 18:46:46 +0000 |
commit | 019b9fdbb30b5f8b385d9543e85124db5dfe614d (patch) | |
tree | 3ba974176c7a06827f181b4832949dad0250d8ac /gcc/config | |
parent | 9012dfca77cd6e48b904c3bcc713efbeef301748 (diff) | |
download | gcc-019b9fdbb30b5f8b385d9543e85124db5dfe614d.zip gcc-019b9fdbb30b5f8b385d9543e85124db5dfe614d.tar.gz gcc-019b9fdbb30b5f8b385d9543e85124db5dfe614d.tar.bz2 |
sse.md (storentdf, storentsf): New.
* config/i386/sse.md (storentdf, storentsf): New.
From-SVN: r126594
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/sse.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 3164077..58d4f31 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -343,6 +343,20 @@ "TARGET_SSE2" "") +(define_expand "storentdf" + [(set (match_operand:DF 0 "memory_operand" "") + (unspec:DF [(match_operand:DF 1 "register_operand" "")] + UNSPEC_MOVNT))] + "TARGET_SSE4A" + "") + +(define_expand "storentsf" + [(set (match_operand:SF 0 "memory_operand" "") + (unspec:SF [(match_operand:SF 1 "register_operand" "")] + UNSPEC_MOVNT))] + "TARGET_SSE4A" + "") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Parallel single-precision floating point arithmetic |