aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/ManagedStatic.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-05-30 01:09:53 +0000
committerBill Wendling <isanbard@gmail.com>2009-05-30 01:09:53 +0000
commit09f17a8479de39a60faeacee399195ce20da9251 (patch)
treef0d4b79ea566f6e294aa76e328d22cb38491cc4b /llvm/lib/Support/ManagedStatic.cpp
parentc1b9bff66d050170243dc3edaa563609d1f2e301 (diff)
downloadllvm-09f17a8479de39a60faeacee399195ce20da9251.zip
llvm-09f17a8479de39a60faeacee399195ce20da9251.tar.gz
llvm-09f17a8479de39a60faeacee399195ce20da9251.tar.bz2
Untabification.
llvm-svn: 72604
Diffstat (limited to 'llvm/lib/Support/ManagedStatic.cpp')
-rw-r--r--llvm/lib/Support/ManagedStatic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/ManagedStatic.cpp b/llvm/lib/Support/ManagedStatic.cpp
index a3b2bcc..6de6575 100644
--- a/llvm/lib/Support/ManagedStatic.cpp
+++ b/llvm/lib/Support/ManagedStatic.cpp
@@ -42,7 +42,7 @@ void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
ManagedStaticMutex->release();
} else {
assert(Ptr == 0 && DeleterFn == 0 && Next == 0 &&
- "Partially initialized ManagedStatic!?");
+ "Partially initialized ManagedStatic!?");
Ptr = Creator ? Creator() : 0;
DeleterFn = Deleter;