diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-15 21:26:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-15 21:26:29 +0000 |
commit | 0dad6e9c95984804953db0fdcbe0c907d9ee351e (patch) | |
tree | fba6caf31e19c26de8cbd61b9e7eeccce09c0026 /include/llvm/Function.h | |
parent | 1b7de965dd3291f4bf96f0a9ce7cf5fdcb4cd7fd (diff) |
- 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.h | 2 |
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>; |