forked from OSchip/llvm-project
Ryan Brown's patch to handle DW_OP_call_frame_cfa addresses
as load addreses instead of host addresses. http://reviews.llvm.org/D5735 llvm-svn: 219896
This commit is contained in:
parent
42f4c7e720
commit
275746d768
|
@ -2875,7 +2875,7 @@ DWARFExpression::Evaluate
|
|||
if (cfa != LLDB_INVALID_ADDRESS)
|
||||
{
|
||||
stack.push_back(Scalar(cfa));
|
||||
stack.back().SetValueType (Value::eValueTypeHostAddress);
|
||||
stack.back().SetValueType (Value::eValueTypeLoadAddress);
|
||||
}
|
||||
else
|
||||
if (error_ptr)
|
||||
|
|
Loading…
Reference in New Issue