Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
44c52c16
Commit
44c52c16
authored
Apr 14, 2011
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Silence DW_TAG_GNU_call_site objects.
parent
18f539ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
dwarf.c
dlls/dbghelp/dwarf.c
+10
-3
No files found.
dlls/dbghelp/dwarf.c
View file @
44c52c16
...
...
@@ -1751,6 +1751,9 @@ static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t* subpgm,
case
DW_TAG_label
:
dwarf2_parse_subprogram_label
(
subpgm
,
child
);
break
;
case
DW_TAG_GNU_call_site
:
/* this isn't properly supported by dbghelp interface. skip it for now */
break
;
default:
FIXME
(
"Unhandled Tag type 0x%lx at %s, for %s
\n
"
,
child
->
abbrev
->
tag
,
dwarf2_debug_ctx
(
subpgm
->
ctx
),
...
...
@@ -1808,9 +1811,12 @@ static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
* Skip it for now
*/
break
;
case
DW_TAG_imported_module
:
/* C++ stuff to be silenced (for now) */
break
;
case
DW_TAG_imported_module
:
/* C++ stuff to be silenced (for now) */
break
;
case
DW_TAG_GNU_call_site
:
/* this isn't properly supported by dbghelp interface. skip it for now */
break
;
case
DW_TAG_label
:
dwarf2_parse_subprogram_label
(
subpgm
,
child
);
break
;
...
...
@@ -1939,6 +1945,7 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
case
DW_TAG_unspecified_parameters
:
case
DW_TAG_template_type_param
:
case
DW_TAG_template_value_param
:
case
DW_TAG_GNU_call_site
:
/* FIXME: no support in dbghelp's internals so far */
break
;
default:
...
...
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