search for: 7d0d8338

Displaying 3 results from an estimated 3 matches for "7d0d8338".

2012 Jun 18
0
[LLVMdev] Which pass converts call printf to puts?
Hi Thomson, > Could you give an example of the old instruction cannot be removed > safely? Since the new instruction would produce the same context/result > of the old one, I suppose it is safe to remove the old one when the new > instruction is ready (inserted after the old one). Anything I missed here? yes, you're missing that LLVM programs are in SSA form: A new instruction
2012 Jun 18
1
[LLVMdev] Which pass converts call printf to puts?
...; properly reconnect all incoming and outgoing edges of the old node, > otherwise they'll be dangling. > > Best regards, > Christoph > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120618/7d0d8338/attachment.html>
2012 Jun 18
2
[LLVMdev] Which pass converts call printf to puts?
Could you give an example of the old instruction cannot be removed safely? Since the new instruction would produce the same context/result of the old one, I suppose it is safe to remove the old one when the new instruction is ready (inserted after the old one). Anything I missed here? Thanks, -Thomson On Mon, Jun 18, 2012 at 7:31 PM, Christoph Erhardt <christoph at sicherha.de>wrote: >