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]

Re: problem with stabs on ARM


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



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