Silence some unknown stab type messages.

This commit is contained in:
Hans Leidekker 2005-05-16 08:47:55 +00:00 committed by Alexandre Julliard
parent fc61f6c553
commit 56058ddb15
1 changed files with 6 additions and 0 deletions

View File

@ -73,9 +73,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
#define N_LCSYM 0x28
#define N_MAIN 0x2a
#define N_ROSYM 0x2c
#define N_BNSYM 0x2e
#define N_OPT 0x3c
#define N_RSYM 0x40
#define N_SLINE 0x44
#define N_ENSYM 0x4e
#define N_SO 0x64
#define N_LSYM 0x80
#define N_BINCL 0x82
@ -1510,6 +1512,10 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset,
case N_MAIN:
/* Always ignore these. GCC doesn't even generate them. */
break;
case N_BNSYM:
case N_ENSYM:
/* Always ignore these, they seem to be used only on Darwin. */
break;
default:
ERR("Unknown stab type 0x%02x\n", stab_ptr->n_type);
break;