search for: fe5c6eb2

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

2013 Nov 02
0
[LLVMdev] Indirect branching to BasicBlock
...> LLVM Developers mailing list > 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/20131102/fe5c6eb2/attachment.html>
2013 Nov 02
2
[LLVMdev] Indirect branching to BasicBlock
Hello, I'm currently writing a function pass for LLVM and face the following problem. I want to store the address of a BasicBlock (or the label, as LLVM refers to it) in a local variable (AllocaInst). Later on I intend to indirectly branch to this address by "dereferencing" the variable. Is this possible? I tried creating an instance of AllocaInst but I'm not quite sure which