summaryrefslogtreecommitdiff
path: root/support/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-07 05:39:37 +0000
committerChris Lattner <sabre@nondot.org>2003-08-07 05:39:37 +0000
commit84a393bd0d1421cc32dd496616cd5c7294b488f8 (patch)
tree145ad7e2b4e3495eed3905a75a48dc07f5638916 /support/tools
parent7884b750c33b750177b3f22af75c874c97f728d8 (diff)
downloadllvm-84a393bd0d1421cc32dd496616cd5c7294b488f8.tar.gz
llvm-84a393bd0d1421cc32dd496616cd5c7294b488f8.tar.bz2
llvm-84a393bd0d1421cc32dd496616cd5c7294b488f8.tar.xz
Eliminate now-dead method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support/tools')
-rw-r--r--support/tools/TableGen/TableGenBackend.cpp9
-rw-r--r--support/tools/TableGen/TableGenBackend.h3
2 files changed, 0 insertions, 12 deletions
diff --git a/support/tools/TableGen/TableGenBackend.cpp b/support/tools/TableGen/TableGenBackend.cpp
index c0a67e3392..b86ae72ce9 100644
--- a/support/tools/TableGen/TableGenBackend.cpp
+++ b/support/tools/TableGen/TableGenBackend.cpp
@@ -25,12 +25,3 @@ std::string TableGenBackend::getQualifiedName(Record *R) const {
return Namespace + "::" + R->getName();
}
-/// getTarget - Return the current instance of the Target class.
-///
-Record *TableGenBackend::getTarget(RecordKeeper &RC) const {
- std::vector<Record*> Targets = RC.getAllDerivedDefinitions("Target");
-
- if (Targets.size() != 1)
- throw std::string("ERROR: Multiple subclasses of Target defined!");
- return Targets[0];
-}
diff --git a/support/tools/TableGen/TableGenBackend.h b/support/tools/TableGen/TableGenBackend.h
index bd132039b8..8dfbaddad1 100644
--- a/support/tools/TableGen/TableGenBackend.h
+++ b/support/tools/TableGen/TableGenBackend.h
@@ -29,9 +29,6 @@ public: // Useful helper routines...
/// getQualifiedName - Return the name of the specified record, with a
/// namespace qualifier if the record contains one.
std::string getQualifiedName(Record *R) const;
-
- /// getTarget - Return the current instance of the Target class.
- Record *getTarget(RecordKeeper &RC) const;
};
#endif