Call Platform::SetHostPlatform in the NetBSD platform only on NetBSD

Patch by Kamil Rytarowski

Differential Revision: http://reviews.llvm.org/D14876

llvm-svn: 253699
This commit is contained in:
Ed Maste
2015-11-20 19:32:58 +00:00
parent 437b1b3ea5
commit d550002c9d

View File

@@ -94,10 +94,12 @@ PlatformNetBSD::Initialize ()
if (g_initialize_count++ == 0)
{
#if defined(__NetBSD__)
// Force a host flag to true for the default platform object.
PlatformSP default_platform_sp (new PlatformNetBSD(true));
default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture());
Platform::SetHostPlatform (default_platform_sp);
#endif
PluginManager::RegisterPlugin(PlatformNetBSD::GetPluginNameStatic(false),
PlatformNetBSD::GetDescriptionStatic(false),
PlatformNetBSD::CreateInstance);