diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-02-17 18:27:45 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-02-17 18:27:45 +0000 |
commit | f11284ac87daa613bc7b30db9f54bd716d123222 (patch) | |
tree | ef6e29897cc0984ea5c08ccb83c3e042479236ef /lib/Sema/SemaType.cpp | |
parent | 360c6ce217e920340f236417217be8fdf4b0337a (diff) |
Renamed ASQualType to ExtQualType to reflect its more
general use; as for, objc2's gc type attributes. No
change in functionality.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaType.cpp')
-rw-r--r-- | lib/Sema/SemaType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index 9a575ced9e..db885e97fd 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -755,7 +755,7 @@ static void HandleAddressSpaceTypeAttribute(QualType &Type, } unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue()); - Type = S.Context.getASQualType(Type, ASIdx); + Type = S.Context.getAddrSpaceQualType(Type, ASIdx); } void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) { |