diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-21 20:44:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-21 20:44:12 +0000 |
commit | 7c0cd8cafc825ab23a42a6756146136188842434 (patch) | |
tree | 48e3da6001fb6edc7caa5199d94a13f20bcaf0b8 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 0d776c53778bdb74f9a19dd5abb28cd6aac73fe3 (diff) | |
download | bcm5719-llvm-7c0cd8cafc825ab23a42a6756146136188842434.tar.gz bcm5719-llvm-7c0cd8cafc825ab23a42a6756146136188842434.zip |
add some trivial support for extractelement.
llvm-svn: 26928
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 8bf499eb7b5..fcca7e355ba 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2671,6 +2671,8 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { 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::EXTRACT_VECTOR_ELT: return "extract_vector_elt"; + case ISD::VEXTRACT_VECTOR_ELT: return "vextract_vector_elt"; case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector"; case ISD::VBUILD_VECTOR: return "vbuild_vector"; case ISD::VECTOR_SHUFFLE: return "vector_shuffle"; |