diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-12 23:51:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-12 23:51:40 +0000 |
commit | e3677d63541634d4d2615ef9352a5abe37d0ed03 (patch) | |
tree | 9a1013eda54a1c0f22124051a60bf25b97133274 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | d34cd28aa749b622add9bfbfa0d0db8059a4aa25 (diff) | |
download | bcm5719-llvm-e3677d63541634d4d2615ef9352a5abe37d0ed03.tar.gz bcm5719-llvm-e3677d63541634d4d2615ef9352a5abe37d0ed03.zip |
fix a bad typeo
llvm-svn: 21917
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6fa0d926a7f..79d41fca2a3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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"; |