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
5afe1662
Commit
5afe1662
authored
Jun 27, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Jun 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Parse correctly DW_LNE_set_discriminator.
parent
b6c8b895
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
dwarf.c
dlls/dbghelp/dwarf.c
+4
-0
dwarf.h
dlls/dbghelp/dwarf.h
+2
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
5afe1662
...
...
@@ -2075,6 +2075,10 @@ static BOOL dwarf2_parse_line_numbers(const dwarf2_section_t* sections,
dwarf2_leb128_as_unsigned
(
&
traverse
);
dwarf2_leb128_as_unsigned
(
&
traverse
);
break
;
case
DW_LNE_set_discriminator
:
WARN
(
"not handled %s
\n
"
,
traverse
.
data
);
dwarf2_leb128_as_unsigned
(
&
traverse
);
break
;
default:
FIXME
(
"Unsupported extended opcode %x
\n
"
,
extopcode
);
break
;
...
...
dlls/dbghelp/dwarf.h
View file @
5afe1662
...
...
@@ -421,6 +421,8 @@ enum dwarf_calling_convention
#define DW_LNE_end_sequence 0x01
#define DW_LNE_set_address 0x02
#define DW_LNE_define_file 0x03
/* Dwarf4 new values */
#define DW_LNE_set_discriminator 0x04
#define DW_CIE_ID ~(0x0)
...
...
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