forked from OSchip/llvm-project
parent
6b223a4f06
commit
2fb45d0aff
|
@ -662,6 +662,7 @@ Value::GetValueTypeAsCString (ValueType value_type)
|
|||
switch (value_type)
|
||||
{
|
||||
case eValueTypeScalar: return "scalar";
|
||||
case eValueTypeVector: return "vector";
|
||||
case eValueTypeFileAddress: return "file address";
|
||||
case eValueTypeLoadAddress: return "load address";
|
||||
case eValueTypeHostAddress: return "host address";
|
||||
|
|
|
@ -156,6 +156,7 @@ ABI::GetReturnValueObject (Thread &thread,
|
|||
// we don't do anything with these for now
|
||||
break;
|
||||
case Value::eValueTypeScalar:
|
||||
case Value::eValueTypeVector:
|
||||
clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsFreezeDried;
|
||||
clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
|
||||
clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
|
||||
|
|
|
@ -1711,6 +1711,7 @@ Target::EvaluateExpression
|
|||
// we don't do anything with these for now
|
||||
break;
|
||||
case Value::eValueTypeScalar:
|
||||
case Value::eValueTypeVector:
|
||||
clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
|
||||
clang_expr_variable_sp->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue