[cfe-commits] r65510 - /cfe/trunk/lib/CodeGen/CGCall.cpp
Eli Friedman
eli.friedman at gmail.com
Thu Feb 26 01:34:28 PST 2009
On Wed, Feb 25, 2009 at 11:21 PM, Daniel Dunbar <daniel at zuster.org> wrote:
> } else if (Ty->isPointerLikeType() || Ty->isBlockPointerType() ||
> + Ty->isObjCQualifiedIdType() ||
> Ty->isObjCQualifiedInterfaceType()) {
It's getting to the point where we use the pattern isPointer ||
isBlockPointer || isObjCQualId || isObjCQualInterface in a lot of
places, and are using incomplete versions of it in a lot of others.
Maybe a new predicate would be appropriate?
-Eli
More information about the cfe-commits
mailing list