On Fri, Jul 11, 2008 at 12:24 PM, Chris Lattner <sabre at nondot.org> wrote: > + unsigned getIntTypeSizeInBits(QualType T) const { > + return (unsigned)Ctx.getTypeSize(T); > + } I think this should be using ASTContext::getIntWidth(). (I just added that method relatively recently, so not very much is using it yet.) -Eli