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/CodeGen/CodeGenTypes.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/CodeGen/CodeGenTypes.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenTypes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenTypes.cpp b/lib/CodeGen/CodeGenTypes.cpp index 5c4b2a5900..a385d8c9d2 100644 --- a/lib/CodeGen/CodeGenTypes.cpp +++ b/lib/CodeGen/CodeGenTypes.cpp @@ -266,9 +266,9 @@ const llvm::Type *CodeGenTypes::ConvertNewType(QualType T) { return GetFunctionType(getFunctionInfo(FTP), FTP->isVariadic()); } - case Type::ASQual: + case Type::ExtQual: return - ConvertTypeRecursive(QualType(cast<ASQualType>(Ty).getBaseType(), 0)); + ConvertTypeRecursive(QualType(cast<ExtQualType>(Ty).getBaseType(), 0)); case Type::ObjCInterface: { // Warning: Use of this is strongly discouraged. Late binding of instance |