diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-17 19:53:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-17 19:53:59 +0000 |
commit | 98931bc381e15aeb31e6dde98f73c2c2dfbb7f91 (patch) | |
tree | 903bec634a4643f739e4879a6b6a0353866d95a1 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 783ea16fe4fb981529a9417ac7694a585772c1fe (diff) | |
download | bcm5719-llvm-98931bc381e15aeb31e6dde98f73c2c2dfbb7f91.tar.gz bcm5719-llvm-98931bc381e15aeb31e6dde98f73c2c2dfbb7f91.zip |
add a couple enum values
llvm-svn: 26830
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 901a8f84c3b..46321752690 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2649,10 +2649,12 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::VADD: return "vadd"; case ISD::VSUB: return "vsub"; case ISD::VMUL: return "vmul"; - + case ISD::SETCC: return "setcc"; case ISD::SELECT: return "select"; case ISD::SELECT_CC: return "select_cc"; + case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt"; + case ISD::VINSERT_VECTOR_ELT: return "vinsert_vector_elt"; case ISD::ADDC: return "addc"; case ISD::ADDE: return "adde"; case ISD::SUBC: return "subc"; |