-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add separate feature gate for async fn track caller #112117
Conversation
r? @wesleywiser (rustbot has picked a reviewer for you, use r? to override) |
6778fee
to
937b429
Compare
@rustbot author |
937b429
to
18de762
Compare
One thing I'm not sure is if I should be updating this line that sets
It's used here: The tests pass as-is, but I'm not sure if I should have to reference the new feature gate inside of |
@@ -81,7 +88,7 @@ async fn foo_closure() { | |||
|
|||
// Since compilation is expected to fail for this fn when using | |||
// `nofeat`, we test that separately in `async-block.rs` | |||
#[cfg(feat)] | |||
#[cfg(cls)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this using cls
and not afn
? This is an async block -- shouldn't it only work when async_fn_track_caller
is enabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, I guess it's separate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah it's separate, this case is still gated by closure_track_caller
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add more tests to make sure, e.g., nested closures inside of async fns don't accidentally allow #[track_caller]
with just the async_fn_track_caller
feature gate?
18de762
to
202e3f6
Compare
@compiler-errors I now updated |
Also while we're at it, that line you mentioned:
We could actually be even more conservative and change it so that we only add |
202e3f6
to
b9e395f
Compare
@rustbot ready |
@bors r+ |
📌 Commit b9e395fd4e612742d7d41542fbbe2a80eb9b95d7 has been approved by It is now in the queue for this repository. |
⌛ Testing commit b9e395fd4e612742d7d41542fbbe2a80eb9b95d7 with merge ea47e718b84c05a876f43cd313e78683bdfd7cca... |
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
@bryangarza you need to bless ui tests @rustbot author |
This patch adds a feature gate `async_fn_track_caller` that is separate from `closure_track_caller`. This is to allow enabling `async_fn_track_caller` separately. Fixes rust-lang#110009
b9e395f
to
673ab17
Compare
@rustbot ready |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (e173a8e): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Bootstrap: 650.779s -> 650.501s (-0.04%) |
This patch adds a feature gate
async_fn_track_caller
that is separate fromclosure_track_caller
. This is to allow enablingasync_fn_track_caller
separately.Fixes #110009