This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB 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] coffread.c: cleanup dead code


The CXUX (whatever that was) target was deleted 1 year ago.
The other part, related to DGUX (whatever that was), was ifdeffed out in 1991.

I think it's ok to get rid of these.

elena

2003-10-14  Elena Zannoni  <ezannoni@redhat.com>

	* coffread.c (process_coff_symbol): Delete CXUX_TARGET macro use.
	(decode_base_type): Delete ifdeffed out code.


Index: coffread.c
===================================================================
RCS file: /cvs/uberbaum/gdb/coffread.c,v
retrieving revision 1.45
diff -u -p -r1.45 coffread.c
--- coffread.c	21 Sep 2003 01:26:44 -0000	1.45
+++ coffread.c	14 Oct 2003 22:19:31 -0000
@@ -1641,11 +1634,6 @@ process_coff_symbol (struct coff_symbol 
 		TYPE_NAME (SYMBOL_TYPE (sym)) =
 		  concat (DEPRECATED_SYMBOL_NAME (sym), NULL);
 	    }
-#ifdef CXUX_TARGET
-	  /* Ignore vendor section for Harris CX/UX targets. */
-	  else if (cs->c_name[0] == '$')
-	    break;
-#endif /* CXUX_TARGET */
 
 	  /* Keep track of any type which points to empty structured type,
 	     so it can be filled from a definition from another file.  A
@@ -1797,15 +1785,6 @@ decode_base_type (struct coff_symbol *cs
     case T_NULL:
       /* shows up with "void (*foo)();" structure members */
       return lookup_fundamental_type (current_objfile, FT_VOID);
-
-#if 0
-/* DGUX actually defines both T_ARG and T_VOID to the same value.  */
-#ifdef T_ARG
-    case T_ARG:
-      /* Shows up in DGUX, I think.  Not sure where.  */
-      return lookup_fundamental_type (current_objfile, FT_VOID);	/* shouldn't show up here */
-#endif
-#endif /* 0 */
 
 #ifdef T_VOID
     case T_VOID:


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