On Thu, Sep 05, 2013 at 02:03:51PM -0700, Eric Christopher wrote: > > void visitCallInst(CallInst &I) { > > + if (!I.getCalledFunction()) { > > + return; > > + } > > > > No braces around single statements :) > Fixed in r190110. -Tom