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: Replace 1 with MASK_H8300S.


Hi,

Attached is a patch to replace 1 with MASK_H8300S.  Committed as
obvious.

Kazu Hirata

2002-11-19  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.c (h8300_init_once): Replace 1 with
	MASK_H8300S.

Index: h8300.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.c,v
retrieving revision 1.158
diff -u -r1.158 h8300.c
--- h8300.c	20 Nov 2002 04:54:38 -0000	1.158
+++ h8300.c	20 Nov 2002 04:59:27 -0000
@@ -312,7 +312,7 @@
   if (!TARGET_H8300S && TARGET_MAC)
     {
       error ("-ms2600 is used without -ms");
-      target_flags |= 1;
+      target_flags |= MASK_H8300S;
     }
   
   if (TARGET_H8300 && TARGET_NORMAL_MODE)


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