On Thu, Mar 5, 2009 at 4:17 PM, RAAD B <raad_7007 at yahoo.com> wrote: > how can i insert annotations in IR ? See http://llvm.org/docs/LangRef.html#int_annotation. > I want actually write something like: > CallInst *call = CallInst::Create( ??? , aBasicBlock); It's illegal to take the address of a basic block in LLVM IR. -Eli