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] rtl.h: Remove RTX_EXPR_FIRST and RTX_EXPR_LAST.


Hi,

Attached is a patch to remove RTX_EXPR_FIRST and RTX_EXPR_LAST.

They are introduced by

  http://gcc.gnu.org/ml/gcc-cvs/2004-03/msg00131.html

but they did not come with any use of them.

Kazu Hirata

2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>

	* rtl.h (RTX_EXPR_FIRST, RTX_EXPR_LAST): Remove.

Index: rtl.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/rtl.h,v
retrieving revision 1.543
diff -u -d -p -r1.543 rtl.h
--- rtl.h	25 Mar 2005 02:23:57 -0000	1.543
+++ rtl.h	9 Apr 2005 18:09:09 -0000
@@ -90,8 +90,6 @@ enum rtx_class  {
 #define RTX_COMMUTATIVE_MASK (~2)
 #define RTX_COMMUTATIVE_RESULT (RTX_COMM_COMPARE & RTX_COMMUTATIVE_MASK)
 #define RTX_NON_COMMUTATIVE_RESULT (RTX_COMPARE & RTX_COMMUTATIVE_MASK)
-#define RTX_EXPR_FIRST (RTX_COMPARE)
-#define RTX_EXPR_LAST (RTX_UNARY)
 
 extern const unsigned char rtx_length[NUM_RTX_CODE];
 #define GET_RTX_LENGTH(CODE)		(rtx_length[(int) (CODE)])


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