From: Chris Lattner Date: Thu, 12 May 2005 23:51:40 +0000 (+0000) Subject: fix a bad typeo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a364fa126a686035909d15a87c4dfd2abc60363c;p=oota-llvm.git fix a bad typeo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21917 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6fa0d926a7f..79d41fca2a3 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";