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] i386.h: Remove an unnecessary #undef.


Hi,

Attached is a patch to remove an unnecessary #undef.

i386.h used to contain two definitions of HI_REGISTER_NAMES in a row
with this #undef in between.  The first definition was removed with

  http://gcc.gnu.org/ml/gcc-patches/2001-06/msg00064.html

but #undef itself remained since.

Tested on i686-pc-linux-gnu.  Committed as obvious.

Kazu Hirata

2003-12-30  Kazu Hirata  <kazu@cs.umass.edu>

	* config/i386/i386.h: Remove an unnecessary #undef.

Index: i386.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.h,v
retrieving revision 1.363
diff -u -r1.363 i386.h
--- i386.h	30 Dec 2003 23:05:11 -0000	1.363
+++ i386.h	31 Dec 2003 00:36:35 -0000
@@ -2722,7 +2722,6 @@
    For float regs, the stack top is sometimes referred to as "%st(0)"
    instead of just "%st".  PRINT_REG handles this with the "y" code.  */
 
-#undef  HI_REGISTER_NAMES
 #define HI_REGISTER_NAMES						\
 {"ax","dx","cx","bx","si","di","bp","sp",				\
  "st","st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)",		\


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