Commit 019b9fdb by Zdenek Dvorak Committed by Zdenek Dvorak

sse.md (storentdf, storentsf): New.

	* config/i386/sse.md (storentdf, storentsf): New.

From-SVN: r126594
parent 9012dfca
2007-07-12 Zdenek Dvorak <dvorakz@suse.cz>
* config/i386/sse.md (storentdf, storentsf): New.
2007-07-12 Geoffrey Keating <geoffk@apple.com> 2007-07-12 Geoffrey Keating <geoffk@apple.com>
* builtins.c (get_pointer_alignment): Honor DECL_ALIGN on a * builtins.c (get_pointer_alignment): Honor DECL_ALIGN on a
......
...@@ -343,6 +343,20 @@ ...@@ -343,6 +343,20 @@
"TARGET_SSE2" "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 ;; Parallel single-precision floating point arithmetic
......
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