[LLVMdev] Get LLVM assembler for a function.

Jim Grosbach grosbach at apple.com
Thu Aug 20 07:27:05 PDT 2009


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?
>

I've been using F.dump().

-Jim



More information about the llvm-dev mailing list