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
7fbcd11d
Commit
7fbcd11d
authored
Jun 28, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Jun 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: When the CU is compiled with GCC, deal with some GCC extensions.
parent
87132a3a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
dwarf.c
dlls/dbghelp/dwarf.c
+2
-0
dwarf.h
dlls/dbghelp/dwarf.h
+12
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
7fbcd11d
...
...
@@ -781,7 +781,9 @@ compute_location(dwarf2_traverse_context_t* ctx, struct location* loc,
}
break
;
default:
if
(
op
<
DW_OP_lo_user
)
/* as DW_OP_hi_user is 0xFF, we don't need to test against it */
FIXME
(
"Unhandled attr op: %x
\n
"
,
op
);
/* FIXME else unhandled extension */
return
loc_err_internal
;
}
}
...
...
dlls/dbghelp/dwarf.h
View file @
7fbcd11d
...
...
@@ -376,6 +376,18 @@ typedef enum dwarf_operation_e
DW_OP_call2
=
0x98
,
DW_OP_call4
=
0x99
,
DW_OP_call_ref
=
0x9a
,
DW_OP_form_tls_address
=
0x9b
,
DW_OP_call_frame_cfa
=
0x9c
,
DW_OP_bit_piece
=
0x9d
,
/* Implementation defined extensions */
DW_OP_lo_user
=
0xe0
,
DW_OP_hi_user
=
0xff
,
/* GNU extensions */
DW_OP_GNU_push_tls_address
=
0xe0
,
DW_OP_GNU_uninit
=
0xf0
,
DW_OP_GNU_encoded_addr
=
0xf1
,
}
dwarf_operation_t
;
enum
dwarf_calling_convention
...
...
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