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]

[patch] h8300.md: Remove extra newlines in the resulting code.


Hi,

I am comitting the attached patch to both the mainline and 3.0 branch
as it is obvious.  It removes extra newlines that are emitted by
iorsi3 and xorsi3.

Thanks,

Kazu Hirata

2001-02-20  Kazu Hirata  <kazu@hxi.com>

	* config/h8300/h8300.md (iorsi3): Do not output an extra newline
	character.
	(xorsi3): Likewise.

Index: config/h8300/h8300.md
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/h8300/h8300.md,v
retrieving revision 1.25
diff -u -r1.25 h8300.md
--- h8300.md	2001/02/19 02:26:12	1.25
+++ h8300.md	2001/02/21 18:02:30
@@ -1122,7 +1122,7 @@
     }
   if (TARGET_H8300H || TARGET_H8300S)
     return \"or.l	%S2,%S0\";
-  return \"or	%w2,%w0\;or	%x2,%x0\;or	%y2,%y0\;or	%z2,%z0\;\";
+  return \"or	%w2,%w0\;or	%x2,%x0\;or	%y2,%y0\;or	%z2,%z0\";
 }"
   [(set_attr "length" "2,8")
    (set_attr "cc" "clobber,clobber")])
@@ -1209,7 +1209,7 @@
     }
   if (TARGET_H8300H || TARGET_H8300S)
     return \"xor.l	%S2,%S0\";
-  return \"xor	%w2,%w0\;xor	%x2,%x0\;xor	%y2,%y0\;xor	%z2,%z0\;\";
+  return \"xor	%w2,%w0\;xor	%x2,%x0\;xor	%y2,%y0\;xor	%z2,%z0\";
 }"
   [(set_attr "length" "2,8")
    (set_attr "cc" "clobber,clobber")])


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