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
e039a28e
Commit
e039a28e
authored
Sep 26, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp/dwarf: Silence a couple of dwarf DIE's tag in load_one_debug_entry.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d8c9171c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
dwarf.c
dlls/dbghelp/dwarf.c
+5
-1
No files found.
dlls/dbghelp/dwarf.c
View file @
e039a28e
...
...
@@ -2400,9 +2400,13 @@ static void dwarf2_load_one_entry(dwarf2_debug_info_t* di)
case
DW_TAG_imported_unit
:
dwarf2_parse_imported_unit
(
di
);
break
;
/* silence a couple of C++ defines */
/* keep it silent until we need DW_OP_call_xxx support */
case
DW_TAG_dwarf_procedure
:
/* silence a couple of non-C language defines (mainly C++ but others too) */
case
DW_TAG_imported_module
:
case
DW_TAG_imported_declaration
:
case
DW_TAG_interface_type
:
case
DW_TAG_module
:
case
DW_TAG_ptr_to_member_type
:
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