summary refs log tree commit diff
path: root/src/test/codegen/mainsubprogram.rs
AgeCommit message (Collapse)AuthorLines
2017-02-04Emit DW_AT_main_subprogramTom Tromey-0/+26
This changes rustc to emit DW_AT_main_subprogram on the "main" program. This lets gdb suitably stop at the user's main in response to "start" (rather than the library's main, which is what happens currently). Fixes #32620 r? michaelwoerister