diff options
| author | Zachary Turner <zturner@google.com> | 2017-03-01 01:07:10 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-03-01 01:07:10 +0000 |
| commit | 1d855afc5fceaf63b73182b841fc0d47ebfaf32d (patch) | |
| tree | 307d8acdd7be83a64caff2f92deca8c9f62113ba /llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp | |
| parent | 9538bc4578ebf4c9e776a3eaf6f3ca2f20d27f15 (diff) | |
| download | bcm5719-llvm-1d855afc5fceaf63b73182b841fc0d47ebfaf32d.tar.gz bcm5719-llvm-1d855afc5fceaf63b73182b841fc0d47ebfaf32d.zip | |
Fix signed / unsigned comparison warning.
llvm-svn: 296557
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp')
| -rw-r--r-- | llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp index dbb3eb54484..3e4df503ece 100644 --- a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp @@ -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(); |

