summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r--lldb/source/Commands/CommandObjectArgs.cpp2
-rw-r--r--lldb/source/Commands/CommandObjectCall.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp
index fd57df649af..896a058a1c0 100644
--- a/lldb/source/Commands/CommandObjectArgs.cpp
+++ b/lldb/source/Commands/CommandObjectArgs.cpp
@@ -249,7 +249,7 @@ CommandObjectArgs::Execute
return false;
}
- value.SetContext (Value::eContextTypeOpaqueClangQualType, type);
+ value.SetContext (Value::eContextTypeClangType, type);
value_list.PushValue(value);
}
diff --git a/lldb/source/Commands/CommandObjectCall.cpp b/lldb/source/Commands/CommandObjectCall.cpp
index 26746687d9d..9a1a7977d78 100644
--- a/lldb/source/Commands/CommandObjectCall.cpp
+++ b/lldb/source/Commands/CommandObjectCall.cpp
@@ -257,7 +257,7 @@ CommandObjectCall::Execute
void *cstr_type = exe_ctx.target->GetScratchClangASTContext()->GetCStringType(true);
- val.SetContext (Value::eContextTypeOpaqueClangQualType, cstr_type);
+ val.SetContext (Value::eContextTypeClangType, cstr_type);
value_list.PushValue(val);
success = true;
OpenPOWER on IntegriCloud