From 6217b80b7a1379b74cced1c076338262c3c980b3 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 29 Jul 2009 21:53:49 +0000 Subject: Change uses of: Type::getAsReferenceType() -> Type::getAs() Type::getAsRecordType() -> Type::getAs() Type::getAsPointerType() -> Type::getAs() Type::getAsBlockPointerType() -> Type::getAs() Type::getAsLValueReferenceType() -> Type::getAs() Type::getAsRValueReferenceType() -> Type::getAs() Type::getAsMemberPointerType() -> Type::getAs() Type::getAsReferenceType() -> Type::getAs() Type::getAsTagType() -> Type::getAs() And remove Type::getAsReferenceType(), etc. This change is similar to one I made a couple weeks ago, but that was partly reverted pending some additional design discussion. With Doug's pending smart pointer changes for Types, it seemed natural to take this approach. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77510 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CodeGenFunction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/CodeGenFunction.cpp') diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index 94fd052431..28d729c225 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -384,7 +384,7 @@ void CodeGenFunction::EmitBranchOnBoolExpr(const Expr *Cond, /// getCGRecordLayout - Return record layout info. const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT, QualType Ty) { - const RecordType *RTy = Ty->getAsRecordType(); + const RecordType *RTy = Ty->getAs(); assert (RTy && "Unexpected type. RecordType expected here."); return CGT.getCGRecordLayout(RTy->getDecl()); @@ -494,7 +494,7 @@ llvm::Value *CodeGenFunction::EmitVLASize(QualType Ty) { return SizeEntry; } else if (const ArrayType *AT = dyn_cast(Ty)) { EmitVLASize(AT->getElementType()); - } else if (const PointerType *PT = Ty->getAsPointerType()) + } else if (const PointerType *PT = Ty->getAs()) EmitVLASize(PT->getPointeeType()); else { assert(0 && "unknown VM type!"); -- cgit v1.2.3-18-g5258