search for: paramb

Displaying 2 results from an estimated 2 matches for "paramb".

Did you mean: param
2013 Oct 22
1
[LLVMdev] Removing function params.
Hi, I am writing my own passes in LLVM. I start with a function with various uses of a LLVM IR function parameter: e.g. paramB. After running one of my passes, all the uses of the paramB vanish. How do I do the last step, and remove the paramB from the function parameters in the LLVM IR? I want to go from: function test( int paramA, int paramB) { ... } to: function test( int paramA) { ... } Is there an LLVM IR API meth...
2013 Oct 22
0
[LLVMdev] LLVMdev Digest, Vol 112, Issue 59
.... > Message-ID: > <CAAMvbhE771NgnJJB=2eqA43HQYjtSQ+gq2+9DFSHcz4tYarH1w at mail.gmail.com> > Content-Type: text/plain; charset=UTF-8 > > Hi, > > I am writing my own passes in LLVM. > I start with a function with various uses of a LLVM IR function > parameter: e.g. paramB. > > After running one of my passes, all the uses of the paramB vanish. > How do I do the last step, and remove the paramB from the function > parameters in the LLVM IR? > > I want to go from: > function test( int paramA, int paramB) > { ... } > > to: > function...