This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Patch] [Commited] [Altivec] Fix PR 12467, altivec_vmsummbm was wrong


The problem is there was a copyo so I committed this obvious patch to fix it.

ChangeLog:
	* config/rs6000/altivec.md (altivec_vmsummbm): Fix typo.



Index: config/rs6000/altivec.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/rs6000/altivec.md,v
retrieving revision 1.10
diff -u -p -r1.10 altivec.md
--- config/rs6000/altivec.md 17 Oct 2003 20:20:37 -0000 1.10
+++ config/rs6000/altivec.md 5 Dec 2003 03:41:03 -0000
@@ -670,7 +670,7 @@
(match_operand:V16QI 2 "register_operand" "v")
(match_operand:V4SI 3 "register_operand" "v")] 66))]
"TARGET_ALTIVEC"
- "vmsumubm %0,%1,%2,%3"
+ "vmsummbm %0,%1,%2,%3"
[(set_attr "type" "veccomplex")])


(define_insn "altivec_vmsumuhm"



Thanks,
Andrew Pinski


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]