diff options
author | Dan Gohman <gohman@apple.com> | 2009-12-11 21:31:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-12-11 21:31:27 +0000 |
commit | 1d459e49370bd922c5dd40ea1129c0f5ac7a6706 (patch) | |
tree | 6c9fea486a431fac51e15178f07fdda23f6386cd /llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | |
parent | 8811885366340e70eacbab949703baa16346b4f7 (diff) | |
download | bcm5719-llvm-1d459e49370bd922c5dd40ea1129c0f5ac7a6706.tar.gz bcm5719-llvm-1d459e49370bd922c5dd40ea1129c0f5ac7a6706.zip |
Implement vector widening, splitting, and scalarizing for SIGN_EXTEND_INREG.
llvm-svn: 91158
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp index 2dc7a547ce3..26252459ec9 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp @@ -179,6 +179,7 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) { case ISD::FRINT: case ISD::FNEARBYINT: case ISD::FFLOOR: + case ISD::SIGN_EXTEND_INREG: QueryType = Node->getValueType(0); break; case ISD::SINT_TO_FP: |