mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix signed / unsigned comparison warning.
llvm-svn: 296557
This commit is contained in:
parent
1aca6debb8
commit
9d0a55ab5e
@ -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…
Reference in New Issue
Block a user