aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-09-17 06:05:39 +0000
committerCraig Topper <craig.topper@gmail.com>2012-09-17 06:05:39 +0000
commit7ffafe4102ec4b8491a82e700076c85bd692ec84 (patch)
treec8df424878de0e05dd5e6990ccc6ed9be64c4520 /include/llvm/Analysis
parentefd841cdc5ba7e3b8e7299e0523cf80d460b44ba (diff)
downloadexternal_llvm-7ffafe4102ec4b8491a82e700076c85bd692ec84.zip
external_llvm-7ffafe4102ec4b8491a82e700076c85bd692ec84.tar.gz
external_llvm-7ffafe4102ec4b8491a82e700076c85bd692ec84.tar.bz2
Remove a couple unused fields. Not detected by Wunused-private-field because of unimplemented copy constructor and copy assignment operator that make the class look incomplete. Upcoming patch will mark them deleted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/AliasSetTracker.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Analysis/AliasSetTracker.h b/include/llvm/Analysis/AliasSetTracker.h
index 95626d6..8c783f1 100644
--- a/include/llvm/Analysis/AliasSetTracker.h
+++ b/include/llvm/Analysis/AliasSetTracker.h
@@ -109,7 +109,6 @@ class AliasSet : public ilist_node<AliasSet> {
PointerRec *PtrList, **PtrListEnd; // Doubly linked list of nodes.
AliasSet *Forward; // Forwarding pointer.
- AliasSet *Next, *Prev; // Doubly linked list of AliasSets.
// All instructions without a specific address in this alias set.
std::vector<AssertingVH<Instruction> > UnknownInsts;