Index: llvm/trunk/lib/Support/ManagedStatic.cpp =================================================================== --- llvm/trunk/lib/Support/ManagedStatic.cpp +++ llvm/trunk/lib/Support/ManagedStatic.cpp @@ -28,9 +28,6 @@ } static sys::Mutex* getManagedStaticMutex() { - // We need to use a function local static here, since this can get called - // during a static constructor and we need to guarantee that it's initialized - // correctly. llvm::call_once(mutex_init_flag, initializeMutex); return ManagedStaticMutex; }