Dear LLVMers,<br><br>    I am trying to use your inline pass, and I would like to know if it is possible to remove a function from the bitcode file once it is inlined. Basically, I try:<br><br>$> opt -inline file2.bc > file2.in.bc<br>
<br>    and I see that all the functions have been inlined into the main procedure, inside file2.in.bc. However, the inlined function is still in the bitcode, even though it is unreachable from main. Is there a way to remove this unreachable function from the bitcode file?<br>
<br>thank you very much,<br><br>Gabriel<br>