]> git.lizzy.rs Git - rust.git/commitdiff
Auto merge of #104219 - bryangarza:async-track-caller-dup, r=eholk
authorbors <bors@rust-lang.org>
Thu, 17 Nov 2022 13:47:03 +0000 (13:47 +0000)
committerbors <bors@rust-lang.org>
Thu, 17 Nov 2022 13:47:03 +0000 (13:47 +0000)
Support `#[track_caller]` on async fns

Adds `#[track_caller]` to the generator that is created when we desugar the async fn.

Fixes #78840

Open questions:
- What is the performance impact of adding `#[track_caller]` to every `GenFuture`'s `poll(...)` function, even if it's unused (i.e., the parent span does not set `#[track_caller]`)? We might need to set it only conditionally, if the indirection causes overhead we don't want.

1  2 
compiler/rustc_ast_lowering/src/expr.rs
compiler/rustc_ast_lowering/src/item.rs