Commit 1760483d authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winedbg: Fix get_addr on ARM.

parent 8a64ba7e
......@@ -33,9 +33,8 @@ static unsigned be_arm_get_addr(HANDLE hThread, const CONTEXT* ctx,
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Pc);
case be_cpu_addr_stack:
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Sp);
default:
case be_cpu_addr_frame:
dbg_printf("not done\n");
return be_cpu_build_addr(hThread, ctx, addr, 0, ctx->Fp);
}
return FALSE;
}
......
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