Displaying 2 results from an estimated 2 matches for "ba08d732".
2013 Apr 15
0
[LLVMdev] Annotating output assembly with input C statements
...nd is unnecessary. Why is
displaying a line of C code corresponding to some file+line pair more than
just reading a specific line from a given file?
Eli
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130415/ba08d732/attachment.html>
2013 Apr 15
2
[LLVMdev] Annotating output assembly with input C statements
Hi,
I'm trying to annotate the final assembly output of my llvm codegen with the corresponding input C statements.
It would've been super easy if the source information were included in the IR debug info. But obviously they are not, and there are good reasons why not !
So I'm bound to collecting all my information in the back-end from the existing debug pseudo instructions. As you