forked from OSchip/llvm-project
Fixed an issue with the MacOSX backchain register context where the pc was
being returned for both the PC and FP. llvm-svn: 131081
This commit is contained in:
parent
e155a3d8aa
commit
0e4851641f
|
@ -102,7 +102,7 @@ RegisterContextMacOSXFrameBackchain::ReadRegisterValue (uint32_t reg, Scalar &va
|
|||
case LLDB_REGNUM_GENERIC_FP:
|
||||
if (m_cursor.fp == LLDB_INVALID_ADDRESS)
|
||||
return false;
|
||||
reg_value = m_cursor.pc;
|
||||
reg_value = m_cursor.fp;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue