Displaying 3 results from an estimated 3 matches for "95a1c125".
2011 Aug 02
0
[LLVMdev] Grabbing Result of an Instruction.
In LLVM, %1 is the instruction itself. This is because LLVM IR is in
SSA, so the "=" really means equality. If you look at a use of %1,
e.g. as an operand to another instruction, you'll see that it's the
instruction itself that is there (i.e. you can dyn_cast<Instruction>
it).
On Mon, Aug 1, 2011 at 5:27 PM, Manish Gupta <manishg at cs.ucsd.edu> wrote:
> What
2011 Aug 02
1
[LLVMdev] Grabbing Result of an Instruction.
...ist
> > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
> >
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110802/95a1c125/attachment.html>
2011 Aug 01
3
[LLVMdev] Grabbing Result of an Instruction.
What member function to use if I wish to operate on results of an
instruction.
eg.
Instruction %1 = getelementptr inbounds [10 x i32]* %a, i32 0, i32 %0
I->getOperand will give me the operands.
How should I get hold of %1?
Thanks,
Manish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: