mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winedbg: stack_get_register_current_frame() is not used anymore so remove it.
This commit is contained in:
parent
f8624006a7
commit
f54b168855
1 changed files with 0 additions and 23 deletions
|
@ -111,29 +111,6 @@ BOOL stack_get_current_frame(IMAGEHLP_STACK_FRAME* ihsf)
|
||||||
return stack_get_frame(dbg_curr_thread->curr_frame, ihsf);
|
return stack_get_frame(dbg_curr_thread->curr_frame, ihsf);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL stack_get_register_current_frame(unsigned regno, DWORD_PTR** pval)
|
|
||||||
{
|
|
||||||
enum be_cpu_addr kind;
|
|
||||||
|
|
||||||
if (dbg_curr_thread->frames == NULL) return FALSE;
|
|
||||||
|
|
||||||
if (!be_cpu->get_register_info(regno, &kind)) return FALSE;
|
|
||||||
|
|
||||||
switch (kind)
|
|
||||||
{
|
|
||||||
case be_cpu_addr_pc:
|
|
||||||
*pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_pc;
|
|
||||||
break;
|
|
||||||
case be_cpu_addr_stack:
|
|
||||||
*pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_stack;
|
|
||||||
break;
|
|
||||||
case be_cpu_addr_frame:
|
|
||||||
*pval = &dbg_curr_thread->frames[dbg_curr_thread->curr_frame].linear_frame;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOL stack_get_register_frame(const struct dbg_internal_var* div, DWORD_PTR** pval)
|
BOOL stack_get_register_frame(const struct dbg_internal_var* div, DWORD_PTR** pval)
|
||||||
{
|
{
|
||||||
if (dbg_curr_thread->frames == NULL) return FALSE;
|
if (dbg_curr_thread->frames == NULL) return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue