[llvm-commits] CVS: llvm/utils/TableGen/CodeGenInstruction.h CodeGenTarget.cpp InstrInfoEmitter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Aug 26 13:43:03 PDT 2005
Changes in directory llvm/utils/TableGen:
CodeGenInstruction.h updated: 1.11 -> 1.12
CodeGenTarget.cpp updated: 1.33 -> 1.34
InstrInfoEmitter.cpp updated: 1.27 -> 1.28
---
Log message:
spell this variable right
---
Diffs of the changes: (+3 -3)
CodeGenInstruction.h | 2 +-
CodeGenTarget.cpp | 2 +-
InstrInfoEmitter.cpp | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/utils/TableGen/CodeGenInstruction.h
diff -u llvm/utils/TableGen/CodeGenInstruction.h:1.11 llvm/utils/TableGen/CodeGenInstruction.h:1.12
--- llvm/utils/TableGen/CodeGenInstruction.h:1.11 Fri Aug 26 15:40:46 2005
+++ llvm/utils/TableGen/CodeGenInstruction.h Fri Aug 26 15:42:52 2005
@@ -81,7 +81,7 @@
bool isCommutable;
bool isTerminator;
bool hasDelaySlot;
- bool usesCustomDAGSChedInserter;
+ bool usesCustomDAGSchedInserter;
bool hasVariableNumberOfOperands;
CodeGenInstruction(Record *R, const std::string &AsmStr);
Index: llvm/utils/TableGen/CodeGenTarget.cpp
diff -u llvm/utils/TableGen/CodeGenTarget.cpp:1.33 llvm/utils/TableGen/CodeGenTarget.cpp:1.34
--- llvm/utils/TableGen/CodeGenTarget.cpp:1.33 Fri Aug 26 15:40:46 2005
+++ llvm/utils/TableGen/CodeGenTarget.cpp Fri Aug 26 15:42:52 2005
@@ -250,7 +250,7 @@
isCommutable = R->getValueAsBit("isCommutable");
isTerminator = R->getValueAsBit("isTerminator");
hasDelaySlot = R->getValueAsBit("hasDelaySlot");
- usesCustomDAGSChedInserter = R->getValueAsBit("usesCustomDAGSChedInserter");
+ usesCustomDAGSchedInserter = R->getValueAsBit("usesCustomDAGSChedInserter");
hasVariableNumberOfOperands = false;
try {
Index: llvm/utils/TableGen/InstrInfoEmitter.cpp
diff -u llvm/utils/TableGen/InstrInfoEmitter.cpp:1.27 llvm/utils/TableGen/InstrInfoEmitter.cpp:1.28
--- llvm/utils/TableGen/InstrInfoEmitter.cpp:1.27 Fri Aug 26 15:40:46 2005
+++ llvm/utils/TableGen/InstrInfoEmitter.cpp Fri Aug 26 15:42:52 2005
@@ -197,7 +197,7 @@
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
- if (Inst.usesCustomDAGSChedInserter)
+ if (Inst.usesCustomDAGSchedInserter)
OS << "|M_USES_CUSTOM_DAG_SCHED_INSERTION";
OS << ", 0";
More information about the llvm-commits
mailing list