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 | 0c486bdc221768f229e97ad15f5d160288817e96 (patch) | |
tree | 4bc2d6ba2c0ce02c7f5f0538403af0451c5d812c /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | fa984b61e42c94ad7e66cf2880ca826dba488d30 (diff) |
add a couple enum values
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26830 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 901a8f84c3..4632175269 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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"; |