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]

[comitted patch] Fix a typo in the h8300 port.


Hi,

I comitted the attached obvious patch to both the branch and the
mainline.

Kazu Hirata

2001-07-04  Kazu Hirata  <kazu@hxi.com>

	* config/h8300/h8300.c (get_shift_alg): Remove an extra operand
	from shll.

Index: h8300.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.c,v
retrieving revision 1.53.2.2
diff -u -r1.53.2.2 h8300.c
--- h8300.c	2001/05/12 20:32:43	1.53.2.2
+++ h8300.c	2001/07/04 21:54:24
@@ -2238,7 +2238,7 @@
 	{
 	  if (count == 15 && shift_type == SHIFT_ASHIFTRT)
 	    {
-	      info->special =
"shll\t%t0,%t0\n\tsubx\t%t0,%t0\n\tmov.b\t%t0,%s0";
+	      info->special =
"shll\t%t0\n\tsubx\t%t0,%t0\n\tmov.b\t%t0,%s0";
 	      info->cc_valid_p = 0;
 	      return SHIFT_SPECIAL;
 	    }


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