search for: espcecially

Displaying 3 results from an estimated 3 matches for "espcecially".

Did you mean: escpecially
2009 May 09
0
[LLVMdev] LLVM related question
...ing back and forth. > If i have a pointer to Instruction, how can i get or set the VALUE > of  Instruction's operands ? I->getOperand(0) gets the first operand, I->setOperand(0) sets it, etc. Note that in general, the best way to get used to the API is to look at existing passes, espcecially if there's already a pass that's does stuff that's related to what you're doing. -Eli
2009 May 10
1
[LLVMdev] LLVM related question
...; If i have a pointer to Instruction, how can i get or set the VALUE > > of Instruction's operands ? > > I->getOperand(0) gets the first operand, I->setOperand(0) sets it, > etc. Note that in general, the best way to get used to the API is to > look at existing passes, espcecially if there's already a pass that's > does stuff that's related to what you're doing. > > -Eli > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/...
2009 May 09
2
[LLVMdev] LLVM related question
I will start with that i am vary grateful for your time.And continue with, i am sorry if my Qs aren't quite accurate( i just started with the LLVM compiler). On Sat, May 9, 2009 at 5:23 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Sat, May 9, 2009 at 5:35 AM, Rotem Varon <varonrotem at gmail.com> wrote: > > I need to add a new optimization to the LLVM