From: Bill Wendling Date: Sun, 30 Dec 2012 01:23:08 +0000 (+0000) Subject: Uniquify the AttributeImpl based on the Constant pointer, since those are X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=435654b18135bb5482a029bf359c4c2c7a5c2816;p=oota-llvm.git Uniquify the AttributeImpl based on the Constant pointer, since those are already uniquified. Note: This will be expanded in the future to add more than just one pointer value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171245 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AttributeImpl.h b/lib/VMCore/AttributeImpl.h index 253d6e82eb7..65ac3ea9823 100644 --- a/lib/VMCore/AttributeImpl.h +++ b/lib/VMCore/AttributeImpl.h @@ -49,7 +49,9 @@ public: void Profile(FoldingSetNodeID &ID) const { Profile(ID, Data); } - static void Profile(FoldingSetNodeID &ID, Constant *Data); + static void Profile(FoldingSetNodeID &ID, Constant *Data) { + ID.AddPointer(Data); + } }; //===----------------------------------------------------------------------===// diff --git a/lib/VMCore/Attributes.cpp b/lib/VMCore/Attributes.cpp index ad1af45f855..a1e0856971d 100644 --- a/lib/VMCore/Attributes.cpp +++ b/lib/VMCore/Attributes.cpp @@ -363,10 +363,6 @@ uint64_t AttributeImpl::getStackAlignment() const { return getBitMask() & getAttrMask(Attribute::StackAlignment); } -void AttributeImpl::Profile(FoldingSetNodeID &ID, Constant *Data) { - ID.AddInteger(cast(Data)->getZExtValue()); -} - //===----------------------------------------------------------------------===// // AttributeSetImpl Definition //===----------------------------------------------------------------------===//