[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu May 12 16:51:57 PDT 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.109 -> 1.110
---
Log message:
fix a bad typeo
---
Diffs of the changes: (+2 -2)
SelectionDAG.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.109 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.110
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.109 Thu May 12 18:24:06 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Thu May 12 18:51:40 2005
@@ -1690,8 +1690,8 @@
case ISD::BRCONDTWOWAY: return "brcondtwoway";
case ISD::RET: return "ret";
case ISD::CALL: return "call";
- case ISD::CALLSEQ_START: return "callseq_end";
- case ISD::CALLSEQ_END: return "callseq_start";
+ case ISD::CALLSEQ_START: return "callseq_start";
+ case ISD::CALLSEQ_END: return "callseq_end";
// Other operators
case ISD::LOAD: return "load";
More information about the llvm-commits
mailing list