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
1f4ddbae
Commit
1f4ddbae
authored
Mar 11, 2009
by
Ken Thomases
Committed by
Alexandre Julliard
Mar 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp/stabs: Translate additional register codes.
parent
e3bcc754
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
stabs.c
dlls/dbghelp/stabs.c
+16
-0
No files found.
dlls/dbghelp/stabs.c
View file @
1f4ddbae
...
...
@@ -1354,6 +1354,22 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset,
case
17
:
case
18
:
case
19
:
loc
.
reg
=
CV_REG_ST0
+
stab_ptr
->
n_value
-
12
;
break
;
case
21
:
case
22
:
case
23
:
case
24
:
case
25
:
case
26
:
case
27
:
case
28
:
loc
.
reg
=
CV_REG_XMM0
+
stab_ptr
->
n_value
-
21
;
break
;
case
29
:
case
30
:
case
31
:
case
32
:
case
33
:
case
34
:
case
35
:
case
36
:
loc
.
reg
=
CV_REG_MM0
+
stab_ptr
->
n_value
-
29
;
break
;
default:
FIXME
(
"Unknown register value (%lu)
\n
"
,
stab_ptr
->
n_value
);
loc
.
reg
=
CV_REG_NONE
;
...
...
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