Commit 0d0d3050 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winedbg: Implement adjust_pc_for_break on ARM.

parent 1760483d
...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment