summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-02-19 20:50:41 +0000
committerTed Kremenek <kremenek@apple.com>2008-02-19 20:50:41 +0000
commita795aca96aca81ddeb4cd9628138926dd9fa612c (patch)
tree11e4e350ca78a90d2f3e7084087baee2ad49d582 /lib
parent86532db5d7b1a8e03d9677ee3d15daca1a59b6f2 (diff)
downloadllvm-a795aca96aca81ddeb4cd9628138926dd9fa612c.tar.gz
llvm-a795aca96aca81ddeb4cd9628138926dd9fa612c.tar.bz2
llvm-a795aca96aca81ddeb4cd9628138926dd9fa612c.tar.xz
Fixed bug in APInt::Profile() where the BitWidth field was not included in the
profile of the APSInt object. This caused unexpected Profile collisions where none should have occurred. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/APInt.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp
index 9886de83dc..bc5df9cf47 100644
--- a/lib/Support/APInt.cpp
+++ b/lib/Support/APInt.cpp
@@ -167,6 +167,8 @@ APInt& APInt::operator=(uint64_t RHS) {
/// Profile - This method 'profiles' an APInt for use with FoldingSet.
void APInt::Profile(FoldingSetNodeID& ID) const {
+ ID.AddInteger(BitWidth);
+
if (isSingleWord()) {
ID.AddInteger(VAL);
return;