diff options
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp index 1e4d846a898..567921a42a8 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp @@ -3780,7 +3780,7 @@ public: } llvm::ArrayRef<OptionDefinition> GetDefinitions() override { - return g_renderscript_kernel_bp_set_options; + return llvm::makeArrayRef(g_renderscript_kernel_bp_set_options); } std::array<int, 3> m_coord; @@ -4039,7 +4039,7 @@ public: } llvm::ArrayRef<OptionDefinition> GetDefinitions() override { - return g_renderscript_runtime_alloc_dump_options; + return llvm::makeArrayRef(g_renderscript_runtime_alloc_dump_options); } FileSpec m_outfile; @@ -4161,7 +4161,7 @@ public: } llvm::ArrayRef<OptionDefinition> GetDefinitions() override { - return g_renderscript_runtime_alloc_list_options; + return llvm::makeArrayRef(g_renderscript_runtime_alloc_list_options); } uint32_t m_id; |