diff options
| -rw-r--r-- | llvm/include/llvm/ADT/DenseMap.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/DenseMap.h b/llvm/include/llvm/ADT/DenseMap.h index 0166228a74d..783c0b4d9d6 100644 --- a/llvm/include/llvm/ADT/DenseMap.h +++ b/llvm/include/llvm/ADT/DenseMap.h @@ -843,7 +843,7 @@ public:        for (BucketT *P = getBuckets(), *E = P + InlineBuckets; P != E; ++P) {          if (!KeyInfoT::isEqual(P->first, EmptyKey) &&              !KeyInfoT::isEqual(P->first, TombstoneKey)) { -          assert((TmpEnd - TmpBegin) < InlineBuckets && +          assert(size_t(TmpEnd - TmpBegin) < InlineBuckets &&                   "Too many inline buckets!");            new (&TmpEnd->first) KeyT(llvm_move(P->first));            new (&TmpEnd->second) ValueT(llvm_move(P->second));  | 

