Silencing a -Wsign-compare warning (all uses of this constant are within unsigned expressions anyway); NFC.

llvm-svn: 226826
This commit is contained in:
Aaron Ballman 2015-01-22 13:57:41 +00:00
parent 8eb8204e3f
commit 9ada6cd0f6
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ static const unsigned AliasedCheckLimit = 10;
// Another limit for the alias checks: The maximum distance between load/store
// instructions where alias checks are done.
// This limit is useful for very large basic blocks.
static const int MaxMemDepDistance = 160;
static const unsigned MaxMemDepDistance = 160;
/// \returns the parent basic block if all of the instructions in \p VL
/// are in the same block or null otherwise.