}
bool Type::isReferenceType() const {
- return isa<ReferenceType>(CanonicalType);
+ // If this is directly a reference type, return it.
+ if (const ReferenceType *RTy = dyn_cast<ReferenceType>(this))
+ return RTy;
+
+ // If this is a typedef for a reference type, strip the typedef off without
+ // losing all typedef information.
+ if (isa<ReferenceType>(CanonicalType))
+ return cast<ReferenceType>(cast<TypedefType>(this)->LookThroughTypedefs());
+ return 0;
}
bool Type::isArrayType() const {
QualType t = e->getType();
assert(!t.isNull() && "DefaultFunctionArrayConversion - missing type");
- if (const ReferenceType *ref = dyn_cast<ReferenceType>(t.getCanonicalType()))
- t = promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
+ if (const ReferenceType *ref = dyn_cast<ReferenceType>(t)) {
+ promoteExprToType(e, ref->getReferenceeType()); // C++ [expr]
+ t = e->getType();
+ }
if (t->isFunctionType())
promoteExprToType(e, Context.getPointerType(t));
else if (const ArrayType *ary = dyn_cast<ArrayType>(t.getCanonicalType()))
QualType t = expr->getType();
assert(!t.isNull() && "UsualUnaryConversions - missing type");
- if (const ReferenceType *ref = dyn_cast<ReferenceType>(t.getCanonicalType()))
- t = promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
+ if (const ReferenceType *ref = dyn_cast<ReferenceType>(t)) {
+ promoteExprToType(expr, ref->getReferenceeType()); // C++ [expr]
+ t = expr->getType();
+ }
if (t->isPromotableIntegerType()) // C99 6.3.1.1p2
promoteExprToType(expr, Context.IntTy);
else