diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-05-01 17:55:32 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-05-01 17:55:32 +0000 |
commit | 5ee24e54d76ab86279fe196c03d6e03f5b4b3b3b (patch) | |
tree | 58260f6547182737c6c36d1bb8136babf3037643 /lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | cf5ab820227dedd77fb91d0904b6dc3694a7c196 (diff) |
Allow CONCAT_VECTORS nodes to be legal or have custom lowering for some targets.
Changes to take advantage of this will come later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 6974dde6f6..0e5e0c066c 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -443,6 +443,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) // These operations default to expand. setOperationAction(ISD::FGETSIGN, (MVT::SimpleValueType)VT, Expand); + setOperationAction(ISD::CONCAT_VECTORS, (MVT::SimpleValueType)VT, Expand); } // Most targets ignore the @llvm.prefetch intrinsic. |