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] h8300.md: Fix typos in pattern names.


Hi,

Committed as obvious.

Kazu Hirata

2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md (*one_complsi2_h8300): Change to
	*one_cmplsi2_h8300.
	(*one_complsi2_h8300hs): Change to *one_cmplsi2_h8300hs.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.268
diff -u -r1.268 h8300.md
--- h8300.md	18 Feb 2004 00:42:39 -0000	1.268
+++ h8300.md	18 Feb 2004 00:49:08 -0000
@@ -1540,14 +1540,14 @@
   ""
   "")
 
-(define_insn "*one_complsi2_h8300"
+(define_insn "*one_cmplsi2_h8300"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(not:SI (match_operand:SI 1 "register_operand" "0")))]
   "TARGET_H8300"
   "not	%w0\;not	%x0\;not	%y0\;not	%z0"
   [(set_attr "length" "8")])
 
-(define_insn "*one_complsi2_h8300hs"
+(define_insn "*one_cmplsi2_h8300hs"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(not:SI (match_operand:SI 1 "register_operand" "0")))]
   "TARGET_H8300H || TARGET_H8300S"


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