summaryrefslogtreecommitdiff
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-15 21:26:29 +0000
committerChris Lattner <sabre@nondot.org>2002-10-15 21:26:29 +0000
commit0dad6e9c95984804953db0fdcbe0c907d9ee351e (patch)
treefba6caf31e19c26de8cbd61b9e7eeccce09c0026 /include/llvm/Function.h
parent1b7de965dd3291f4bf96f0a9ce7cf5fdcb4cd7fd (diff)
downloadllvm-0dad6e9c95984804953db0fdcbe0c907d9ee351e.tar.gz
llvm-0dad6e9c95984804953db0fdcbe0c907d9ee351e.tar.bz2
llvm-0dad6e9c95984804953db0fdcbe0c907d9ee351e.tar.xz
- Eliminate SymbolTable::ParentSymTab, ST::localLookup, and
Function::ParentSymTab. These aren't needed at all. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r--include/llvm/Function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 87e6bad48a..bb2c3ca996 100644
--- a/include/llvm/Function.h
+++ b/include/llvm/Function.h
@@ -57,7 +57,7 @@ private:
BasicBlockListType BasicBlocks; // The basic blocks
ArgumentListType ArgumentList; // The formal arguments
- SymbolTable *SymTab, *ParentSymTab;
+ SymbolTable *SymTab;
friend class SymbolTableListTraits<Function, Module, Module>;