On Aug 19, 2009, at 10:30 PM, Óscar Fuentes wrote: > We can get the llvm assembler for a Module with something as simple as > > std::ofstream f("code.llvm"); > f << *M; > > Is there a method for obtaining the llvm assembler of a given > Function? In addition to the other answers, f << *F works too. Dan