diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-22 20:09:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-22 20:09:35 +0000 |
commit | 2f4119a608e4b32f8dee260da4f57eb2dd166735 (patch) | |
tree | 63458fa067f1e499df2345a895b64e5733edb809 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 85633ae8f6765805cca2af93810801356ef00f5a (diff) | |
download | bcm5719-llvm-2f4119a608e4b32f8dee260da4f57eb2dd166735.tar.gz bcm5719-llvm-2f4119a608e4b32f8dee260da4f57eb2dd166735.zip |
Implement simple support for vector casting. This can currently only handle
casts between legal vector types.
llvm-svn: 26961
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index fcca7e355ba..ad6605763ef 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2676,6 +2676,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector"; case ISD::VBUILD_VECTOR: return "vbuild_vector"; case ISD::VECTOR_SHUFFLE: return "vector_shuffle"; + case ISD::VBIT_CONVERT: return "vbit_convert"; case ISD::ADDC: return "addc"; case ISD::ADDE: return "adde"; case ISD::SUBC: return "subc"; |