aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-19 18:34:09 +0000
committerOwen Anderson <resistor@mac.com>2009-06-19 18:34:09 +0000
commit6183d8321e4cad6556b77a5f1a4e671680d1aafb (patch)
tree66a22e1773f1a37a6cbcfe7dabcfca3f724d8df1 /lib/VMCore
parent5b156f77e6bad0abdab7ca17b0494d3450607aca (diff)
downloadexternal_llvm-6183d8321e4cad6556b77a5f1a4e671680d1aafb.zip
external_llvm-6183d8321e4cad6556b77a5f1a4e671680d1aafb.tar.gz
external_llvm-6183d8321e4cad6556b77a5f1a4e671680d1aafb.tar.bz2
Forgot to remove some explicit locking when it became implicit in the ValueMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Constants.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp
index 5de1a08..56c9002 100644
--- a/lib/VMCore/Constants.cpp
+++ b/lib/VMCore/Constants.cpp
@@ -1473,6 +1473,7 @@ Constant *ConstantArray::get(const ArrayType *Ty,
/// destroyConstant - Remove the constant from the constant table...
///
void ConstantArray::destroyConstant() {
+ // Implicitly locked.
ArrayConstants->remove(this);
destroyConstantImpl();
}
@@ -1601,6 +1602,7 @@ Constant *ConstantStruct::get(const std::vector<Constant*> &V, bool packed) {
// destroyConstant - Remove the constant from the constant table...
//
void ConstantStruct::destroyConstant() {
+ // Implicitly locked.
StructConstants->remove(this);
destroyConstantImpl();
}
@@ -1668,7 +1670,7 @@ Constant *ConstantVector::get(const std::vector<Constant*> &V) {
// destroyConstant - Remove the constant from the constant table...
//
void ConstantVector::destroyConstant() {
- sys::SmartScopedWriter<true> Write(&*ConstantsLock);
+ // Implicitly locked.
VectorConstants->remove(this);
destroyConstantImpl();
}
@@ -1740,7 +1742,7 @@ ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
// destroyConstant - Remove the constant from the constant table...
//
void ConstantPointerNull::destroyConstant() {
- sys::SmartScopedWriter<true> Writer(&*ConstantsLock);
+ // Implicitly locked.
NullPtrConstants->remove(this);
destroyConstantImpl();
}
@@ -2721,7 +2723,7 @@ Constant *ConstantExpr::getZeroValueForNegationExpr(const Type *Ty) {
// destroyConstant - Remove the constant from the constant table...
//
void ConstantExpr::destroyConstant() {
- sys::SmartScopedWriter<true> Writer(&*ConstantsLock);
+ // Implicitly locked.
ExprConstants->remove(this);
destroyConstantImpl();
}