Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
56058ddb
Commit
56058ddb
authored
May 16, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
May 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence some unknown stab type messages.
parent
fc61f6c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
stabs.c
dlls/dbghelp/stabs.c
+6
-0
No files found.
dlls/dbghelp/stabs.c
View file @
56058ddb
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment