summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/LLVMContextImpl.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-19 22:42:22 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-19 22:42:22 +0000
commit6848e38daf24547a639a48e4585fef5268ede3cc (patch)
tree5938533c4cca738710fc4d62e01e741f950f8987 /llvm/lib/VMCore/LLVMContextImpl.cpp
parent8fb0c99a12b1b8e171ed08137320ca369296b34e (diff)
downloadbcm5719-llvm-6848e38daf24547a639a48e4585fef5268ede3cc.tar.gz
bcm5719-llvm-6848e38daf24547a639a48e4585fef5268ede3cc.zip
s/AttributeListImpl/AttributeSetImpl/g to match the namechange of AttributeList.
llvm-svn: 170600
Diffstat (limited to 'llvm/lib/VMCore/LLVMContextImpl.cpp')
-rw-r--r--llvm/lib/VMCore/LLVMContextImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/LLVMContextImpl.cpp b/llvm/lib/VMCore/LLVMContextImpl.cpp
index 53140a2bd97..4c3ce154dee 100644
--- a/llvm/lib/VMCore/LLVMContextImpl.cpp
+++ b/llvm/lib/VMCore/LLVMContextImpl.cpp
@@ -103,9 +103,9 @@ LLVMContextImpl::~LLVMContextImpl() {
}
// Destroy attribute lists.
- for (FoldingSetIterator<AttributeListImpl> I = AttrsLists.begin(),
+ for (FoldingSetIterator<AttributeSetImpl> I = AttrsLists.begin(),
E = AttrsLists.end(); I != E; ) {
- FoldingSetIterator<AttributeListImpl> Elem = I++;
+ FoldingSetIterator<AttributeSetImpl> Elem = I++;
delete &*Elem;
}
OpenPOWER on IntegriCloud