aboutsummaryrefslogtreecommitdiff
path: root/gdb/coffread.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-11-05 15:27:31 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-11-05 15:27:31 +0000
commit8af580fccd972d75c836f13421df359b4aff0cb4 (patch)
tree63d7aeeee9907269c81e9276efdfa15345fffa6f /gdb/coffread.c
parent8517fae7a54a3d541aecc6be63e22d6ef5d51a66 (diff)
downloadfsf-binutils-gdb-8af580fccd972d75c836f13421df359b4aff0cb4.zip
fsf-binutils-gdb-8af580fccd972d75c836f13421df359b4aff0cb4.tar.gz
fsf-binutils-gdb-8af580fccd972d75c836f13421df359b4aff0cb4.tar.bz2
2003-11-05 Elena Zannoni <ezannoni@redhat.com>
* coffread.c (process_coff_symbol): Delete CXUX_TARGET macro use. (decode_base_type): Delete ifdeffed out code.
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r--gdb/coffread.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c
index 7d7df8e..15f617b 100644
--- a/gdb/coffread.c
+++ b/gdb/coffread.c
@@ -1641,11 +1641,6 @@ process_coff_symbol (struct coff_symbol *cs,
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
@@ -1798,15 +1793,6 @@ decode_base_type (struct coff_symbol *cs, unsigned int c_type,
/* 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:
/* Intel 960 COFF has this symbol and meaning. */