diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-04 01:48:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-04 01:48:10 +0000 |
commit | e4116f855319a7754ca991eefb57a90d90f37229 (patch) | |
tree | 7e8615fbafad680df077d094b6f81736fcb8167d /lib/Support/FoldingSet.cpp | |
parent | 9f24ad79ce32200b06499ef638b502fc1c36ed04 (diff) |
Encode small integers more densely in foldingset, avoiding overflowing the SmallVector as often.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FoldingSet.cpp')
-rw-r--r-- | lib/Support/FoldingSet.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp index 1b0e81e466..ecb700dfd6 100644 --- a/lib/Support/FoldingSet.cpp +++ b/lib/Support/FoldingSet.cpp @@ -44,7 +44,10 @@ void FoldingSetImpl::NodeID::AddInteger(unsigned I) { } void FoldingSetImpl::NodeID::AddInteger(uint64_t I) { Bits.push_back(unsigned(I)); - Bits.push_back(unsigned(I >> 32)); + + // If the integer is small, encode it just as 32-bits. + if ((uint64_t)(int)I != I) + Bits.push_back(unsigned(I >> 32)); } void FoldingSetImpl::NodeID::AddFloat(float F) { Bits.push_back(FloatToBits(F)); |