forked from OSchip/llvm-project
[X86] Add a TODO about v8i1 CONCAT_VECTORS.
llvm-svn: 320784
This commit is contained in:
parent
23951ec2cd
commit
1a1e6d6cf6
|
@ -1538,6 +1538,9 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
|
|||
setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
|
||||
}
|
||||
|
||||
// TODO: v8i1 concat should be legal without VLX to support concats of
|
||||
// v1i1, but we won't legalize it correctly currently without introducing
|
||||
// a v4i1 concat in the middle.
|
||||
setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
|
||||
setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i1, Custom);
|
||||
setOperationAction(ISD::INSERT_SUBVECTOR, MVT::v4i1, Custom);
|
||||
|
|
Loading…
Reference in New Issue