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 /lib/VMCore/Module.cpp | |
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 'lib/VMCore/Module.cpp')
-rw-r--r-- | lib/VMCore/Module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index 4bd3a884b3..397b5e2834 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -75,7 +75,7 @@ void Module::dump() const { } SymbolTable *Module::getSymbolTableSure() { - if (!SymTab) SymTab = new SymbolTable(0); + if (!SymTab) SymTab = new SymbolTable(); return SymTab; } |