mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
fix a signed comparison warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a722e781cc
commit
99825b4455
@ -166,7 +166,7 @@ void DecodeUNPCKLPDMask(unsigned NElts,
|
||||
void DecodeUNPCKLPMask(EVT VT,
|
||||
SmallVectorImpl<unsigned> &ShuffleMask) {
|
||||
|
||||
int NElts = VT.getVectorNumElements();
|
||||
unsigned NElts = VT.getVectorNumElements();
|
||||
|
||||
for (unsigned i = 0; i != NElts/2; ++i) {
|
||||
ShuffleMask.push_back(i); // Reads from dest
|
||||
|
Loading…
Reference in New Issue
Block a user