aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/Record.cpp')
-rw-r--r--utils/TableGen/Record.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/utils/TableGen/Record.cpp b/utils/TableGen/Record.cpp
index d7eb98a72e..9d14bc051f 100644
--- a/utils/TableGen/Record.cpp
+++ b/utils/TableGen/Record.cpp
@@ -155,10 +155,6 @@ std::string ListRecTy::getAsString() const {
return "list<" + Ty->getAsString() + ">";
}
-void ListRecTy::print(std::ostream &OS) const {
- OS << "list<" << *Ty << ">";
-}
-
Init *ListRecTy::convertValue(ListInit *LI) {
std::vector<Init*> Elements;
@@ -209,10 +205,6 @@ std::string RecordRecTy::getAsString() const {
return Rec->getName();
}
-void RecordRecTy::print(std::ostream &OS) const {
- OS << Rec->getName();
-}
-
Init *RecordRecTy::convertValue(DefInit *DI) {
// Ensure that DI is a subclass of Rec.
if (!DI->getDef()->isSubClassOf(Rec))