From 9879aa9c95850021da29bcc0ca3643c11b67f481 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 22 Jul 2004 21:32:38 +0000 Subject: Remove some abandoned code that was never finished. If needed in the future it can be ressurected from CVS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15113 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/TableGen.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'utils/TableGen/TableGen.cpp') diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index e0885d1f9b..dd4d22aa4f 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -23,7 +23,6 @@ #include "RegisterInfoEmitter.h" #include "InstrInfoEmitter.h" #include "InstrSelectorEmitter.h" -#include "SimpleInstrSelEmitter.h" #include #include #include @@ -36,7 +35,7 @@ enum ActionType { GenRegisterEnums, GenRegister, GenRegisterHeader, GenInstrEnums, GenInstrs, GenInstrSelector, PrintEnums, - Parse, GenSimpInstrSel, + Parse }; namespace { @@ -58,8 +57,6 @@ namespace { "Generate instruction descriptions"), clEnumValN(GenInstrSelector, "gen-instr-selector", "Generate an instruction selector"), - clEnumValN(GenSimpInstrSel, "gen-simp-instr-sel", - "Generate a simple instruction selector"), clEnumValN(PrintEnums, "print-enums", "Print enum values for a class"), clEnumValN(Parse, "parse", @@ -471,9 +468,6 @@ int main(int argc, char **argv) { *Out << "\n"; break; } - case GenSimpInstrSel: - SimpleInstrSelEmitter(Records).run(*Out); - break; default: assert(1 && "Invalid Action"); return 1; -- cgit v1.2.3