Silence a -Wsign-compare warning. NFC.

llvm-svn: 218868
This commit is contained in:
Aaron Ballman 2014-10-02 13:17:11 +00:00
parent ccc3e3733b
commit 254dd7e439
1 changed files with 2 additions and 2 deletions

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;