OSDN Git Service

Reverting size_type for the containers from size_type to unsigned.
authorYaron Keren <yaron.keren@gmail.com>
Fri, 20 Jun 2014 12:20:56 +0000 (12:20 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Fri, 20 Jun 2014 12:20:56 +0000 (12:20 +0000)
commit212e2b9c8dc74b16bd6297243c18064bae9ea113
tree188f556b3fbef0c78ef9bb89c4e45155b347311c
parent7d5bff0d5a236a5e3a6f6a159d2a6607fb76368a
Reverting size_type for the containers from size_type to unsigned.
Various places in LLVM assume that container size and count are unsigned
and do not use the container size_type. Therefore they break compilation
(or possibly executation) for LP64 systems where size_t is 64 bit while
unsigned is still 32 bit.

If we'll ever that many items in the container size_type could be made
size_t for a specific containers after reviweing its other uses.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211353 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/ADT/DenseMap.h
include/llvm/ADT/DenseSet.h
include/llvm/ADT/ScopedHashTable.h
include/llvm/ADT/SmallBitVector.h
include/llvm/ADT/SmallPtrSet.h
include/llvm/ADT/SparseBitVector.h
include/llvm/ADT/SparseMultiSet.h
include/llvm/ADT/SparseSet.h
include/llvm/IR/ValueMap.h