summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/LanguageRuntime/RenderScript
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2015-09-22 19:58:02 +0000
committerEnrico Granata <egranata@apple.com>2015-09-22 19:58:02 +0000
commit7eed48779d1fd107b2a1d56e07b006a9cf7a45fd (patch)
tree2b70660b964433d2988acce483b24ec653b53874 /lldb/source/Plugins/LanguageRuntime/RenderScript
parentc74275bc4ae734d93a994dbe7d071f79c0137039 (diff)
downloadbcm5719-llvm-7eed48779d1fd107b2a1d56e07b006a9cf7a45fd.tar.gz
bcm5719-llvm-7eed48779d1fd107b2a1d56e07b006a9cf7a45fd.zip
On second thought, amend the previous patch to pass itself the ValueObject& for the static value instead of just its type
llvm-svn: 248316
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp4
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
index ac841c28643..d4d4ac99897 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
@@ -314,8 +314,8 @@ RenderScriptRuntime::GetDynamicTypeAndAddress(ValueObject &in_value, lldb::Dynam
}
TypeAndOrName
-RenderScriptRuntime::FixUpDynamicType(const TypeAndOrName& type_and_or_name,
- const CompilerType& static_type)
+RenderScriptRuntime::FixUpDynamicType (const TypeAndOrName& type_and_or_name,
+ ValueObject& static_value)
{
return type_and_or_name;
}
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
index 4e2f693c094..9f91fb955b7 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
@@ -185,8 +185,8 @@ class RenderScriptRuntime : public lldb_private::CPPLanguageRuntime
Value::ValueType &value_type);
virtual TypeAndOrName
- FixUpDynamicType(const TypeAndOrName& type_and_or_name,
- const CompilerType& static_type);
+ FixUpDynamicType (const TypeAndOrName& type_and_or_name,
+ ValueObject& static_value);
virtual bool CouldHaveDynamicValue(ValueObject &in_value);
OpenPOWER on IntegriCloud