From: Bill Wendling Date: Wed, 9 Jan 2013 00:32:55 +0000 (+0000) Subject: Forgot the namespace identifier. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8456efb38e479e4878a6a782c3026c20b09c1f8e;p=oota-llvm.git Forgot the namespace identifier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171924 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/Attributes.cpp b/lib/IR/Attributes.cpp index 01a59a33c0f..cdea3500bb2 100644 --- a/lib/IR/Attributes.cpp +++ b/lib/IR/Attributes.cpp @@ -509,8 +509,8 @@ void AttributeImpl::setStackAlignment(unsigned Align) { Vals.push_back(ConstantInt::get(Type::getInt64Ty(Context), Align)); } -void Profile(FoldingSetNodeID &ID, Constant *Data, - ArrayRef Vals) { +void AttributeImpl::Profile(FoldingSetNodeID &ID, Constant *Data, + ArrayRef Vals) { ID.AddInteger(cast(Data)->getZExtValue()); for (ArrayRef::iterator I = Vals.begin(), E = Vals.end(); I != E; ++I)