Revert r154086. It may be needed for Darwin. But the symbols are still missing in the dylib.

llvm-svn: 154108
This commit is contained in:
Bill Wendling 2012-04-05 17:38:07 +00:00
parent 0881092306
commit e50ab408e5
1 changed files with 2 additions and 4 deletions

View File

@ -101,6 +101,7 @@ lldb_private::Initialize ()
UnwindAssembly_x86::Initialize(); UnwindAssembly_x86::Initialize();
EmulateInstructionARM::Initialize (); EmulateInstructionARM::Initialize ();
ObjectFilePECOFF::Initialize (); ObjectFilePECOFF::Initialize ();
DynamicLoaderPOSIXDYLD::Initialize ();
PlatformFreeBSD::Initialize(); PlatformFreeBSD::Initialize();
PlatformLinux::Initialize(); PlatformLinux::Initialize();
#if defined (__APPLE__) #if defined (__APPLE__)
@ -123,8 +124,6 @@ lldb_private::Initialize ()
PlatformRemoteiOS::Initialize(); PlatformRemoteiOS::Initialize();
PlatformMacOSX::Initialize(); PlatformMacOSX::Initialize();
PlatformiOSSimulator::Initialize(); PlatformiOSSimulator::Initialize();
#else
DynamicLoaderPOSIXDYLD::Initialize ();
#endif #endif
#if defined (__linux__) #if defined (__linux__)
//---------------------------------------------------------------------- //----------------------------------------------------------------------
@ -178,6 +177,7 @@ lldb_private::Terminate ()
UnwindAssemblyInstEmulation::Terminate(); UnwindAssemblyInstEmulation::Terminate();
EmulateInstructionARM::Terminate (); EmulateInstructionARM::Terminate ();
ObjectFilePECOFF::Terminate (); ObjectFilePECOFF::Terminate ();
DynamicLoaderPOSIXDYLD::Terminate ();
PlatformFreeBSD::Terminate(); PlatformFreeBSD::Terminate();
PlatformLinux::Terminate(); PlatformLinux::Terminate();
#if defined (__APPLE__) #if defined (__APPLE__)
@ -197,8 +197,6 @@ lldb_private::Terminate ()
PlatformMacOSX::Terminate(); PlatformMacOSX::Terminate();
PlatformRemoteiOS::Terminate(); PlatformRemoteiOS::Terminate();
PlatformiOSSimulator::Terminate(); PlatformiOSSimulator::Terminate();
#else
DynamicLoaderPOSIXDYLD::Terminate ();
#endif #endif
Debugger::SettingsTerminate (); Debugger::SettingsTerminate ();