Commit 39302b6a by Aldy Hernandez Committed by Aldy Hernandez

altivec.md ("one_cmplv16qi2"): Change vnot to vnor.

	* config/rs6000/altivec.md ("one_cmplv16qi2"): Change vnot to
	vnor.
	("one_cmplv8hi2"): Same.
	("one_cmplv4si2"): Same.

From-SVN: r81693
parent 3dc85d39
2004-05-10 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/altivec.md ("one_cmplv16qi2"): Change vnot to
vnor.
("one_cmplv8hi2"): Same.
("one_cmplv4si2"): Same.
2004-05-10 Kaz Kojima <kkojima@gcc.gnu.org> 2004-05-10 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/15130 PR target/15130
......
...@@ -999,21 +999,21 @@ ...@@ -999,21 +999,21 @@
[(set (match_operand:V16QI 0 "register_operand" "=v") [(set (match_operand:V16QI 0 "register_operand" "=v")
(not:V16QI (match_operand:V16QI 1 "register_operand" "v")))] (not:V16QI (match_operand:V16QI 1 "register_operand" "v")))]
"TARGET_ALTIVEC" "TARGET_ALTIVEC"
"vnot %0,%1" "vnor %0,%1,%1"
[(set_attr "type" "vecsimple")]) [(set_attr "type" "vecsimple")])
(define_insn "one_cmplv8hi2" (define_insn "one_cmplv8hi2"
[(set (match_operand:V8HI 0 "register_operand" "=v") [(set (match_operand:V8HI 0 "register_operand" "=v")
(not:V8HI (match_operand:V8HI 1 "register_operand" "v")))] (not:V8HI (match_operand:V8HI 1 "register_operand" "v")))]
"TARGET_ALTIVEC" "TARGET_ALTIVEC"
"vnot %0,%1" "vnor %0,%1,%1"
[(set_attr "type" "vecsimple")]) [(set_attr "type" "vecsimple")])
(define_insn "one_cmplv4si2" (define_insn "one_cmplv4si2"
[(set (match_operand:V4SI 0 "register_operand" "=v") [(set (match_operand:V4SI 0 "register_operand" "=v")
(not:V4SI (match_operand:V4SI 1 "register_operand" "v")))] (not:V4SI (match_operand:V4SI 1 "register_operand" "v")))]
"TARGET_ALTIVEC" "TARGET_ALTIVEC"
"vnot %0,%1" "vnor %0,%1,%1"
[(set_attr "type" "vecsimple")]) [(set_attr "type" "vecsimple")])
(define_insn "iorv16qi3" (define_insn "iorv16qi3"
......
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