mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
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:
parent
31713943aa
commit
1af4bec1e2
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user