mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fixed compilation error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195230 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5cd32afac4
commit
29086acc6e
@ -6163,9 +6163,9 @@ static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
|
||||
|
||||
static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
|
||||
MVT VT = Op.getSimpleValueType();
|
||||
unsigned NumOps = Op.getNumOperands();
|
||||
assert((VT.is256BitVector() && NumOps == 2) ||
|
||||
(VT.is512BitVector() && (NumOps == 2 || NumOps == 4)));
|
||||
assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
|
||||
(VT.is512BitVector() && (Op.getNumOperands() == 2 ||
|
||||
Op.getNumOperands() == 4)));
|
||||
|
||||
// AVX can use the vinsertf128 instruction to create 256-bit vectors
|
||||
// from two other 128-bit ones.
|
||||
|
Loading…
Reference in New Issue
Block a user