diff options
author | Nate Begeman <natebegeman@mac.com> | 2006-02-17 05:43:56 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2006-02-17 05:43:56 +0000 |
commit | 5965bd19f85f1fa1d80e3bba42dc7954d0ff5f73 (patch) | |
tree | ec5b69adc0a9b29157bfccc8676805738ff6f1c0 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 9ec392b2aa6ad02cfba5068ec163af7a2adc0476 (diff) | |
download | bcm5719-llvm-5965bd19f85f1fa1d80e3bba42dc7954d0ff5f73.tar.gz bcm5719-llvm-5965bd19f85f1fa1d80e3bba42dc7954d0ff5f73.zip |
kill ADD_PARTS & SUB_PARTS and replace them with fancy new ADDC, ADDE, SUBC
and SUBE nodes that actually expose what's going on and allow for
significant simplifications in the targets.
llvm-svn: 26255
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 23d1dc34cc1..5fc09671c6c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2552,8 +2552,10 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::SETCC: return "setcc"; case ISD::SELECT: return "select"; case ISD::SELECT_CC: return "select_cc"; - case ISD::ADD_PARTS: return "add_parts"; - case ISD::SUB_PARTS: return "sub_parts"; + case ISD::ADDC: return "addc"; + case ISD::ADDE: return "adde"; + case ISD::SUBC: return "subc"; + case ISD::SUBE: return "sube"; case ISD::SHL_PARTS: return "shl_parts"; case ISD::SRA_PARTS: return "sra_parts"; case ISD::SRL_PARTS: return "srl_parts"; |