mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-22 05:51:42 +00:00
Fix signed / unsigned comparison warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296557 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00d9a548e8
commit
2848ebe89e
@ -135,7 +135,7 @@ public:
|
||||
void SetUp() override {
|
||||
Streams.clear();
|
||||
Streams.resize(NumStreams);
|
||||
for (int I = 0; I < NumStreams; ++I)
|
||||
for (uint32_t I = 0; I < NumStreams; ++I)
|
||||
Streams[I].IsContiguous = (I % 2 == 0);
|
||||
|
||||
InputData.clear();
|
||||
|
Loading…
x
Reference in New Issue
Block a user