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.c: Fix a typo.


Hi,

Attached is a patch to fix a typo.  Committed as obvious.

Kazu Hirata

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

	* config/h8300/h8300.c (get_shift_alg): Fix a typo.

Index: h8300.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.c,v
retrieving revision 1.206
diff -u -r1.206 h8300.c
--- h8300.c	22 Jan 2003 17:56:39 -0000	1.206
+++ h8300.c	24 Jan 2003 17:17:44 -0000
@@ -2836,7 +2836,7 @@
 	    }
 	}
       else if ((8 <= count && count <= 13)
-	       || (TARGET_H8300S & count == 14))
+	       || (TARGET_H8300S && count == 14))
 	{
 	  info->remainder = count - 8;
 


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