search for: 847559c2

Displaying 2 results from an estimated 2 matches for "847559c2".

Did you mean: 475592
2012 Feb 02
1
[LLVMdev] Fwd: Updating PHI for Instruction Domination?
...ll where I can rearrange the basic blocks and call some functions/utils that solve this issue? Or do I have to manually solve this myself? Thanks again. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120202/847559c2/attachment.html>
2012 Feb 02
3
[LLVMdev] Updating PHI for Instruction Domination?
So I have a loop with two blocks, a header (which points to return and latch) and a latch (which points to return and header). I have inserted a few new blocks, called H and F. Header now points to H and latch. Latch now points to F. H points to F. F points to Header and return. The PHI Nodes have been updated in Header accordingly, now coming from the preheader and F (instead of latch). My