diff options
author | Stu Grossman <grossman@cygnus> | 1994-04-12 02:53:09 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1994-04-12 02:53:09 +0000 |
commit | 70e375c3567c03d2f6457f66feda20285239dba8 (patch) | |
tree | 849a83ff79f25ece127bac863761b8cbbd952c21 /gdb/xcoffread.c | |
parent | 099c286e7440447b4c7d9e1ced7b86ffaa255c29 (diff) | |
download | gdb-70e375c3567c03d2f6457f66feda20285239dba8.zip gdb-70e375c3567c03d2f6457f66feda20285239dba8.tar.gz gdb-70e375c3567c03d2f6457f66feda20285239dba8.tar.bz2 |
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().
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 314982f..7d93098 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; |