summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-01-24 09:23:46 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-01-24 09:23:46 +0000
commit48e9f26df5f6085a1c972069ba6aa227821cd41c (patch)
tree730c837a3edc4428ed4df6126f6b23f4317e1db5 /utils
parent79b0c3f0b9d91bbda354a2c6f22b6578655a5143 (diff)
downloadllvm-48e9f26df5f6085a1c972069ba6aa227821cd41c.tar.gz
llvm-48e9f26df5f6085a1c972069ba6aa227821cd41c.tar.bz2
llvm-48e9f26df5f6085a1c972069ba6aa227821cd41c.tar.xz
Fix a couple of places I noticed where "X86" was hard-coded.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/InstrSelectorEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/InstrSelectorEmitter.cpp b/utils/TableGen/InstrSelectorEmitter.cpp
index dc5dbf256c..5c09393524 100644
--- a/utils/TableGen/InstrSelectorEmitter.cpp
+++ b/utils/TableGen/InstrSelectorEmitter.cpp
@@ -1023,7 +1023,7 @@ void InstrSelectorEmitter::run(std::ostream &OS) {
<< " class " << Target.getName() << "ISel {\n"
<< " SelectionDAG &DAG;\n"
<< " public:\n"
- << " X86ISel(SelectionDAG &D) : DAG(D) {}\n"
+ << " " << Target.getName () << "ISel(SelectionDAG &D) : DAG(D) {}\n"
<< " void generateCode();\n"
<< " private:\n"
<< " unsigned makeAnotherReg(const TargetRegisterClass *RC) {\n"
@@ -1060,7 +1060,7 @@ void InstrSelectorEmitter::run(std::ostream &OS) {
OS << " };\n}\n\n";
// Emit the generateCode entry-point...
- OS << "void X86ISel::generateCode() {\n"
+ OS << "void " << Target.getName () << "ISel::generateCode() {\n"
<< " SelectionDAGNode *Root = DAG.getRoot();\n"
<< " assert(Root->getValueType() == MVT::isVoid && "
"\"Root of DAG produces value??\");\n\n"