aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-05-12 23:51:40 +0000
committerChris Lattner <sabre@nondot.org>2005-05-12 23:51:40 +0000
commita364fa126a686035909d15a87c4dfd2abc60363c (patch)
treed896440bbeea7dc8c201611897504fe95a2813a9 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent128b52d3d75f4b74367de43e891cd98b5a9b5483 (diff)
fix a bad typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 6fa0d926a7..79d41fca2a 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1690,8 +1690,8 @@ const char *SDNode::getOperationName() const {
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";