Silence a -Wsign-compare warning. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218868 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Aaron Ballman 2014-10-02 13:17:11 +00:00
parent 31713943aa
commit 1af4bec1e2

View File

@ -49,10 +49,10 @@ STATISTIC(NumCacheCompleteNonLocalPtr,
"Number of block queries that were completely cached");
// Limit for the number of instructions to scan in a block.
static const int BlockScanLimit = 100;
static const unsigned int BlockScanLimit = 100;
// Limit on the number of memdep results to process.
static const int NumResultsLimit = 100;
static const unsigned int NumResultsLimit = 100;
char MemoryDependenceAnalysis::ID = 0;