From 70e375c3567c03d2f6457f66feda20285239dba8 Mon Sep 17 00:00:00 2001 From: Stu Grossman Date: Tue, 12 Apr 1994 02:53:09 +0000 Subject: [PATCH] Mon Apr 11 19:21:27 1994 Stu Grossman (grossman at cygnus.com) * xcoffread.c (read_xcoff_symtab): Ignore symbols of class C_EXT, smtyp XTY_LD, sclass XMC_DS (external data segment label). They often have the same names as debug symbols for functions, and confuse lookup_symbol(). --- gdb/ChangeLog | 7 +++++++ gdb/xcoffread.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3aa5240fb95..7ca2b536879 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +Mon Apr 11 19:21:27 1994 Stu Grossman (grossman at cygnus.com) + + * xcoffread.c (read_xcoff_symtab): Ignore symbols of class C_EXT, + smtyp XTY_LD, sclass XMC_DS (external data segment label). They + often have the same names as debug symbols for functions, and + confuse lookup_symbol(). + Mon Apr 11 10:44:35 1994 Jim Kingdon (kingdon@deneb.cygnus.com) * remote.c: Around redefinition of PBUFSIZE, adjust whitespace. diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 314982f7be7..7d93098fc82 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -1370,7 +1370,7 @@ function_entry_point: #endif continue; } - break; + continue; default : /* all other XTY_XXXs */ break; -- 2.30.2