diff options
author | Pavel Labath <pavel@labath.sk> | 2018-12-10 18:17:53 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2018-12-10 18:17:53 +0000 |
commit | 871f2b65c1bf689d6d94727dcf40709caaba01d9 (patch) | |
tree | 273383bd7ccfbe770e5b9556cf68abc270422ed3 /lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp | |
parent | 046c390356492eb63988a90c787215a7324f774b (diff) | |
download | bcm5719-llvm-871f2b65c1bf689d6d94727dcf40709caaba01d9.tar.gz bcm5719-llvm-871f2b65c1bf689d6d94727dcf40709caaba01d9.zip |
Fix r348773
It's not sufficient to implement the CreateMemoryInstance function, one
has to use it too.
llvm-svn: 348780
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp b/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp index ee716464206..a148ab525b9 100644 --- a/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp +++ b/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp @@ -153,7 +153,7 @@ llvm::Optional<Header> Header::parse(llvm::StringRef text) { void ObjectFileBreakpad::Initialize() { PluginManager::RegisterPlugin(GetPluginNameStatic(), GetPluginDescriptionStatic(), CreateInstance, - nullptr, GetModuleSpecifications); + CreateMemoryInstance, GetModuleSpecifications); } void ObjectFileBreakpad::Terminate() { |