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/lib1funcs.asm: Remove unused macros.


Hi,

Attached is a patch to remove unused macros.

Tested on h8300 port.  Committed.

Kazu Hirata

2003-11-20  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/lib1funcs.asm (MOVP): Remove.
	(ADDP): Likewise.
	(CMPP): Likewise.

Index: lib1funcs.asm
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/lib1funcs.asm,v
retrieving revision 1.30
diff -u -r1.30 lib1funcs.asm
--- lib1funcs.asm	15 Nov 2003 21:36:49 -0000	1.30
+++ lib1funcs.asm	16 Nov 2003 17:27:52 -0000
@@ -59,9 +59,6 @@
 #define S2H r6h
 
 #ifdef __H8300__
-#define MOVP	mov.w	/* pointers are 16 bits */
-#define ADDP	add.w
-#define CMPP	cmp.w
 #define PUSHP	push
 #define POPP	pop
 
@@ -75,9 +72,6 @@
 #endif
 
 #if defined (__H8300H__) || defined (__H8300S__)
-#define MOVP	mov.l	/* pointers are 32 bits */
-#define ADDP	add.l
-#define CMPP	cmp.l
 #define PUSHP	push.l
 #define POPP	pop.l
 


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