Skip to content

Commit d6affcf

Browse files
committedJan 9, 2024
Auto merge of #119754 - matthiaskrgr:rollup-7cht4m5, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #118903 (Improved support of collapse_debuginfo attribute for macros.) - #119033 (coverage: `llvm-cov` expects column numbers to be bytes, not code points) - #119598 (Fix a typo in core::ops::Deref's doc) - #119660 (remove an unnecessary stderr-per-bitwidth) - #119663 (tests: Normalize `\r\n` to `\n` in some run-make tests) - #119681 (coverage: Anonymize line numbers in branch views) - #119704 (Fix two variable binding issues in lint let_underscore) - #119725 (Add helper for when we want to know if an item has a host param) - #119738 (Add `riscv32imafc-esp-espidf` tier 3 target for the ESP32-P4.) - #119740 (Remove crossbeam-channel) r? `@ghost` `@rustbot` modify labels: rollup
2 parents ca663b0 + 1c9e862 commit d6affcf

File tree

42 files changed

+981
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+981
-228
lines changed
 

‎Cargo.lock

-1
Original file line numberDiff line numberDiff line change
@@ -3797,7 +3797,6 @@ dependencies = [
37973797
name = "rustc_expand"
37983798
version = "0.0.0"
37993799
dependencies = [
3800-
"crossbeam-channel",
38013800
"rustc_ast",
38023801
"rustc_ast_passes",
38033802
"rustc_ast_pretty",

‎compiler/rustc_codegen_cranelift/src/debuginfo/line_info.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,7 @@ impl DebugContext {
6868
// In order to have a good line stepping behavior in debugger, we overwrite debug
6969
// locations of macro expansions with that of the outermost expansion site (when the macro is
7070
// annotated with `#[collapse_debuginfo]` or when `-Zdebug-macros` is provided).
71-
let span = if tcx.should_collapse_debuginfo(span) {
72-
span
73-
} else {
74-
// Walk up the macro expansion chain until we reach a non-expanded span.
75-
// We also stop at the function body level because no line stepping can occur
76-
// at the level above that.
77-
rustc_span::hygiene::walk_chain(span, function_span.ctxt())
78-
};
79-
71+
let span = tcx.collapsed_debuginfo(span, function_span);
8072
match tcx.sess.source_map().lookup_line(span.lo()) {
8173
Ok(SourceFileAndLine { sf: file, line }) => {
8274
let line_pos = file.lines()[line];

0 commit comments

Comments
 (0)
Please sign in to comment.