aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 19:59:38 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 19:59:38 +0000
commit4b757f83abcaddf70aed0dbaaf81a761f2463b33 (patch)
tree4123cfcb111b271a71db646143de3377a23a1ff7 /include/llvm/Analysis
parentae853634d8804a98c6b4e71f8809b6387cc03fe8 (diff)
downloadexternal_llvm-4b757f83abcaddf70aed0dbaaf81a761f2463b33.zip
external_llvm-4b757f83abcaddf70aed0dbaaf81a761f2463b33.tar.gz
external_llvm-4b757f83abcaddf70aed0dbaaf81a761f2463b33.tar.bz2
Remove dead options
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/FindUsedTypes.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/llvm/Analysis/FindUsedTypes.h b/include/llvm/Analysis/FindUsedTypes.h
index 55937d7..cc49c84 100644
--- a/include/llvm/Analysis/FindUsedTypes.h
+++ b/include/llvm/Analysis/FindUsedTypes.h
@@ -14,16 +14,13 @@ class Type;
class FindUsedTypes : public Pass {
std::set<const Type *> UsedTypes;
-
- bool IncludeSymbolTables;
public:
// FindUsedTypes ctor - This pass can optionally include types that are
// referenced only in symbol tables, but the default is not to.
//
static AnalysisID ID;
- static AnalysisID IncludeSymbolTableID;
- FindUsedTypes(AnalysisID id) : IncludeSymbolTables(id != ID) {}
+ FindUsedTypes(AnalysisID id) {}
virtual const char *getPassName() const { return "Find Used Types"; }
// getTypes - After the pass has been run, return the set containing all of
@@ -43,11 +40,6 @@ private:
//
void IncorporateType(const Type *Ty);
- // IncorporateSymbolTable - Add all types referenced by the specified symtab
- // into the collection of used types.
- //
- void IncorporateSymbolTable(const SymbolTable *ST);
-
public:
// run - This incorporates all types used by the specified module
//