From 151880b020e33e12a0286612ec450051bd16f8e8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 29 Sep 2006 18:43:14 +0000 Subject: [PATCH] Define this in the correct n/s git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30671 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/ManagedStatic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/ManagedStatic.cpp b/lib/Support/ManagedStatic.cpp index 85daaf8ba52..5c8feaf554f 100644 --- a/lib/Support/ManagedStatic.cpp +++ b/lib/Support/ManagedStatic.cpp @@ -46,7 +46,7 @@ void ManagedStaticBase::destroy() const { } /// llvm_shutdown - Deallocate and destroy all ManagedStatic variables. -void llvm_shutdown() { +void llvm::llvm_shutdown() { while (StaticList) StaticList->destroy(); } -- 2.34.1