summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-03-01 01:07:10 +0000
committerZachary Turner <zturner@google.com>2017-03-01 01:07:10 +0000
commit1d855afc5fceaf63b73182b841fc0d47ebfaf32d (patch)
tree307d8acdd7be83a64caff2f92deca8c9f62113ba /llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp
parent9538bc4578ebf4c9e776a3eaf6f3ca2f20d27f15 (diff)
downloadbcm5719-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.cpp2
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();
OpenPOWER on IntegriCloud