problem with stabs on ARM

Philip Blundell Philip.Blundell@pobox.com
Fri Apr 7 11:05:00 GMT 2000


Here's a patch for the bug mentioned in
< http://gcc.gnu.org/ml/gcc-bugs/2000-04/msg00044.html >.  It seems to fix 
the problem for me.

p.

2000-04-06  Philip Blundell  <philb@gnu.org>

	* config/arm/arm.h (ARM_NAME_ENCODING_LENGTHS): Strip `*' and `@'
	too.

Index: arm.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/arm/arm.h,v
retrieving revision 1.49.2.17
diff -u -p -u -r1.49.2.17 arm.h
--- arm.h	2000/03/31 16:30:17	1.49.2.17
+++ arm.h	2000/04/07 18:01:24
@@ -1834,6 +1834,8 @@ typedef struct
 #define ARM_NAME_ENCODING_LENGTHS		\
   case SHORT_CALL_FLAG_CHAR: return 1;		\
   case LONG_CALL_FLAG_CHAR:  return 1;		\
+  case '*':		     return 1;		\
+  case '@':		     return 1;		\
   SUBTARGET_NAME_ENCODING_LENGTHS		
 
 /* This has to be handled by a function because more than part of the




More information about the Gcc-patches mailing list