mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 12:24:34 +00:00
fix a signed comparison warning.
llvm-svn: 126682
This commit is contained in:
parent
8586cb2f51
commit
355d573721
@ -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…
x
Reference in New Issue
Block a user