On Saturday 14 May 2005 21:44, Eric Pouech wrote:
> I'm asking because those stabs types seem to be emitted only on darwin
> Anyway, that's easy to silence them since they're not documented in
> standard ELF format
I have had this patch in my tree for a while now. Should I send it to
wine-patches? Some googling turned up N_BNSYM for 0x2e and N_ENSYM
for 0x4e. Does that ring a bell?
-Hans
Changelog:
Silence some unknown stab type messages.
? dlls/dbghelp/dbghelp.spec.def
? dlls/dbghelp/dbghelp.spec.hans
Index: dlls/dbghelp/stabs.c
===================================================================
RCS file: /home/wine/wine/dlls/dbghelp/stabs.c,v
retrieving revision 1.16
diff -u -r1.16 stabs.c
--- dlls/dbghelp/stabs.c 6 May 2005 16:22:55 -0000 1.16
+++ dlls/dbghelp/stabs.c 14 May 2005 20:24:58 -0000
@@ -1510,6 +1510,10 @@
case N_MAIN:
/* Always ignore these. GCC doesn't even generate them. */
break;
+ case 0x2e: /* N_BNSYM */
+ break;
+ case 0x4e: /* N_ENSYM */
+ break;
default:
ERR("Unknown stab type 0x%02x\n", stab_ptr->n_type);
break;