diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-23 19:33:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-23 19:33:44 +0000 |
commit | 4a2c0e92595906b3f9c5002678f3dc806f774207 (patch) | |
tree | 47dc889932aa48e504f81b80dafa78fa5c073152 /include/llvm | |
parent | 472a7ef1cb9cca42cc26baea1acc4c80b5836a58 (diff) | |
download | external_llvm-4a2c0e92595906b3f9c5002678f3dc806f774207.zip external_llvm-4a2c0e92595906b3f9c5002678f3dc806f774207.tar.gz external_llvm-4a2c0e92595906b3f9c5002678f3dc806f774207.tar.bz2 |
Fix bug in eon hopefully
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Analysis/FindUsedTypes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Analysis/FindUsedTypes.h b/include/llvm/Analysis/FindUsedTypes.h index 7ce0604..50d659e 100644 --- a/include/llvm/Analysis/FindUsedTypes.h +++ b/include/llvm/Analysis/FindUsedTypes.h @@ -39,6 +39,10 @@ private: /// void IncorporateType(const Type *Ty); + /// IncorporateSymbolTable - Include any named types. + /// + void IncorporateSymbolTable(const SymbolTable &ST); + public: /// run - This incorporates all types used by the specified module bool run(Module &M); |