mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Fix narrowing conversion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e58263459
commit
9e5512a8ca
@ -5847,7 +5847,7 @@ LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
|
||||
// input vectors to use as shuffle operands (recorded in InputUsed).
|
||||
// If building a suitable shuffle vector proves too hard, then bail
|
||||
// out with useBuildVector set.
|
||||
int InputUsed[2] = { -1U, -1U }; // Not yet discovered.
|
||||
int InputUsed[2] = { -1, -1 }; // Not yet discovered.
|
||||
unsigned LaneStart = l * NumLaneElems;
|
||||
for (unsigned i = 0; i != NumLaneElems; ++i) {
|
||||
// The mask element. This indexes into the input.
|
||||
|
Loading…
Reference in New Issue
Block a user