diff options
| author | Ryan Brown <ribrdb@google.com> | 2015-10-06 20:29:31 +0000 |
|---|---|---|
| committer | Ryan Brown <ribrdb@google.com> | 2015-10-06 20:29:31 +0000 |
| commit | 07a1c459f2631f2ad3e95d4becc0cd38af6a9be4 (patch) | |
| tree | ce9b15c82dd9ec14d103567ec971b4625f2a9c46 /lldb/source/API | |
| parent | 2afea5438f924af932cf62e39daa4a06e298fb37 (diff) | |
| download | bcm5719-llvm-07a1c459f2631f2ad3e95d4becc0cd38af6a9be4.tar.gz bcm5719-llvm-07a1c459f2631f2ad3e95d4becc0cd38af6a9be4.zip | |
Create GoLanguageRuntime.
GoLanguageRuntime supports finding the runtime type for Go interfaces.
llvm-svn: 249456
Diffstat (limited to 'lldb/source/API')
| -rw-r--r-- | lldb/source/API/SystemInitializerFull.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/API/SystemInitializerFull.cpp b/lldb/source/API/SystemInitializerFull.cpp index d085d91b5bf..d9fbbf99178 100644 --- a/lldb/source/API/SystemInitializerFull.cpp +++ b/lldb/source/API/SystemInitializerFull.cpp @@ -49,6 +49,7 @@ #include "Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h" #include "Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h" #include "Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h" +#include "Plugins/LanguageRuntime/Go/GoLanguageRuntime.h" #include "Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h" #include "Plugins/MemoryHistory/asan/MemoryHistoryASan.h" #include "Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h" @@ -289,6 +290,7 @@ SystemInitializerFull::Initialize() AppleObjCRuntimeV1::Initialize(); SystemRuntimeMacOSX::Initialize(); RenderScriptRuntime::Initialize(); + GoLanguageRuntime::Initialize(); CPlusPlusLanguage::Initialize(); ObjCLanguage::Initialize(); |

