winedbg: Fix get_addr on ARM.
This commit is contained in:
parent
8a64ba7ee8
commit
1760483dfb
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue