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 | 0ec3c5ca803cf2e431a6fddb1c504c63007d723d (patch) | |
tree | 7dab7aba3b59eaa6b8a0ea682755e759310126c4 /llvm/lib | |
parent | 69fa5c0d99e71145c06831a466b3cb11dea87e5f (diff) | |
download | bcm5719-llvm-0ec3c5ca803cf2e431a6fddb1c504c63007d723d.tar.gz bcm5719-llvm-0ec3c5ca803cf2e431a6fddb1c504c63007d723d.zip |
Forgot the namespace identifier.
llvm-svn: 171924
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/IR/Attributes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Attributes.cpp b/llvm/lib/IR/Attributes.cpp index 01a59a33c0f..cdea3500bb2 100644 --- a/llvm/lib/IR/Attributes.cpp +++ b/llvm/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) |