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] mn10300.h: Complete PREDICATE_CODES.


Hi,

Attached is a patch to complete PREDICATE_CODES.

Built cc1.  Committed as obvious.

Kazu Hirata

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

	* config/mn10300/mn10300.h (PREDICATE_CODES): Add
	const_8bit_operand and call_address_operand.

Index: mn10300.h
===================================================================
RCS file: /home/kazu/nobackup/gcc-cvs/gcc/gcc/config/mn10300/mn10300.h,v
retrieving revision 1.74
diff -u -r1.74 mn10300.h
--- mn10300.h	27 Sep 2003 04:48:26 -0000	1.74
+++ mn10300.h	21 Dec 2003 07:56:54 -0000
@@ -1110,8 +1110,10 @@
 
 #define FILE_ASM_OP "\t.file\n"
 
-#define PREDICATE_CODES \
-  {"const_1f_operand", {CONST_INT, CONST_DOUBLE}},
+#define PREDICATE_CODES					\
+  {"const_1f_operand", {CONST_INT, CONST_DOUBLE}},	\
+  {"const_8bit_operand", {CONST_INT}},			\
+  {"call_address_operand", {SYMBOL_REF, REG, UNSPEC}},
 
 typedef struct mn10300_cc_status_mdep
   {


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