Have AttributesImpl defriend the Attributes class.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166012 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2012-10-16 05:57:28 +00:00
parent a5c699d5f7
commit 925bcb132a
2 changed files with 3 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ unsigned Attributes::getStackAlignment() const {
}
uint64_t Attributes::Raw() const {
return Attrs ? Attrs->Bits : 0; // FIXME: Don't access this directly!
return Attrs ? Attrs->Raw() : 0;
}
Attributes Attributes::typeIncompatible(Type *Ty) {