diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-09 00:32:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-09 00:32:55 +0000 |
commit | 8456efb38e479e4878a6a782c3026c20b09c1f8e (patch) | |
tree | 2541746c11c5167ae18998fac27de61fc87201b5 /lib | |
parent | ff887165bc221c0398c0d4404dc0b22de216dedf (diff) | |
download | external_llvm-8456efb38e479e4878a6a782c3026c20b09c1f8e.zip external_llvm-8456efb38e479e4878a6a782c3026c20b09c1f8e.tar.gz external_llvm-8456efb38e479e4878a6a782c3026c20b09c1f8e.tar.bz2 |
Forgot the namespace identifier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/IR/Attributes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/IR/Attributes.cpp b/lib/IR/Attributes.cpp index 01a59a3..cdea350 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<Constant*> Vals) { +void AttributeImpl::Profile(FoldingSetNodeID &ID, Constant *Data, + ArrayRef<Constant*> Vals) { ID.AddInteger(cast<ConstantInt>(Data)->getZExtValue()); for (ArrayRef<Constant*>::iterator I = Vals.begin(), E = Vals.end(); I != E; ++I) |