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
0d0d3050
Commit
0d0d3050
authored
Oct 06, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Oct 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Implement adjust_pc_for_break on ARM.
parent
1760483d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
be_arm.c
programs/winedbg/be_arm.c
+7
-2
No files found.
programs/winedbg/be_arm.c
View file @
0d0d3050
...
@@ -142,8 +142,13 @@ static void be_arm_clear_watchpoint(CONTEXT* ctx, unsigned idx)
...
@@ -142,8 +142,13 @@ static void be_arm_clear_watchpoint(CONTEXT* ctx, unsigned idx)
static
int
be_arm_adjust_pc_for_break
(
CONTEXT
*
ctx
,
BOOL
way
)
static
int
be_arm_adjust_pc_for_break
(
CONTEXT
*
ctx
,
BOOL
way
)
{
{
dbg_printf
(
"not done
\n
"
);
if
(
way
)
return
0
;
{
ctx
->
Pc
--
;
return
-
1
;
}
ctx
->
Pc
++
;
return
1
;
}
}
static
int
be_arm_fetch_integer
(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
static
int
be_arm_fetch_integer
(
const
struct
dbg_lvalue
*
lvalue
,
unsigned
size
,
...
...
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