summaryrefslogtreecommitdiff
path: root/utils/TableGen/TableGen.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-22 21:32:38 +0000
committerChris Lattner <sabre@nondot.org>2004-07-22 21:32:38 +0000
commit9879aa9c95850021da29bcc0ca3643c11b67f481 (patch)
tree0dd3816778159f0d306785e5d42f4a28712d5d64 /utils/TableGen/TableGen.cpp
parentcc46c4fceeef4d5a359a1188b737689a69f5be5f (diff)
downloadllvm-9879aa9c95850021da29bcc0ca3643c11b67f481.tar.gz
llvm-9879aa9c95850021da29bcc0ca3643c11b67f481.tar.bz2
llvm-9879aa9c95850021da29bcc0ca3643c11b67f481.tar.xz
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
Diffstat (limited to 'utils/TableGen/TableGen.cpp')
-rw-r--r--utils/TableGen/TableGen.cpp8
1 files changed, 1 insertions, 7 deletions
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 <algorithm>
#include <cstdio>
#include <fstream>
@@ -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;