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:
Jason Molenda 2014-10-16 02:56:12 +00:00
parent 42f4c7e720
commit 275746d768
1 changed files with 1 additions and 1 deletions

View File

@ -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)