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: Use \\t instead of \t.


Hi,

Attached is a patch to replace \t with \\t.  Committed as obvious.

Kazu Hirata

2003-01-21  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md (*negsf2_h8300): Use \\t instead of
	\t.
	(*negsf2_h8300hs): Likewise.
	(*addsi3_lshiftrt_16_zexthi): Likewise.
	(*iorhi3_lshiftrt_8): Likewise.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.153
diff -u -r1.153 h8300.md
--- h8300.md	21 Jan 2003 14:31:29 -0000	1.153
+++ h8300.md	21 Jan 2003 20:30:05 -0000
@@ -1426,7 +1426,7 @@
   [(set (match_operand:SF 0 "register_operand" "=r")
 	(neg:SF (match_operand:SF 1 "register_operand" "0")))]
   "TARGET_H8300"
-  "xor.b\t#128,%z0"
+  "xor.b\\t#128,%z0"
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
@@ -1434,7 +1434,7 @@
   [(set (match_operand:SF 0 "register_operand" "=r")
 	(neg:SF (match_operand:SF 1 "register_operand" "0")))]
   "TARGET_H8300H || TARGET_H8300S"
-  "xor.w\t#32768,%e0"
+  "xor.w\\t#32768,%e0"
   [(set_attr "cc" "clobber")
    (set_attr "length" "4")])
 
@@ -2651,7 +2651,7 @@
 			      (const_int 16))
 		 (zero_extend:SI (match_operand:HI 2 "register_operand" "0"))))]
   "TARGET_H8300H || TARGET_H8300S"
-  "add.w\t%e1,%f0\;xor.w\t%e0,%e0\;rotxl.w\t%e0,%e0"
+  "add.w\\t%e1,%f0\;xor.w\\t%e0,%e0\;rotxl.w\\t%e0,%e0"
   [(set_attr "cc" "clobber")
    (set_attr "length" "6")])
 
@@ -2682,7 +2682,7 @@
 			     (const_int 8))
 		(match_operand:HI 2 "register_operand" "0")))]
   ""
-  "or.b\t%t1,%s0"
+  "or.b\\t%t1,%s0"
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 


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