[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Oct 26 10:02:13 PDT 2005
Changes in directory llvm/utils/TableGen:
DAGISelEmitter.cpp updated: 1.67 -> 1.68
---
Log message:
Condcodes are in the ISD namespace
---
Diffs of the changes: (+1 -1)
DAGISelEmitter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/utils/TableGen/DAGISelEmitter.cpp
diff -u llvm/utils/TableGen/DAGISelEmitter.cpp:1.67 llvm/utils/TableGen/DAGISelEmitter.cpp:1.68
--- llvm/utils/TableGen/DAGISelEmitter.cpp:1.67 Wed Oct 26 11:59:37 2005
+++ llvm/utils/TableGen/DAGISelEmitter.cpp Wed Oct 26 12:02:02 2005
@@ -1590,7 +1590,7 @@
} else if (LeafRec->isSubClassOf("CondCode")) {
// Make sure this is the specified cond code.
OS << " if (cast<CondCodeSDNode>(" << RootName << i
- << ")->get() != " << "MVT::" << LeafRec->getName()
+ << ")->get() != " << "ISD::" << LeafRec->getName()
<< ") goto P" << PatternNo << "Fail;\n";
} else {
Child->dump();
More information about the llvm-commits
mailing list