about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-08-07 13:24:46 -0400
committerMichael Goulet <michael@errs.io>2024-08-26 18:44:20 -0400
commit93295ff6dc48782ea3114e98313836b266f3e54a (patch)
tree25437ddda645a832b5891b72aff30cbc3a5defed /compiler/rustc_interface/src
parent4609841c078cde37c0e2ffb481059cb1bd330233 (diff)
downloadrust-93295ff6dc48782ea3114e98313836b266f3e54a.tar.gz
rust-93295ff6dc48782ea3114e98313836b266f3e54a.zip
Remove some unnecessary TODOs
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/passes.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index 2a4367965ee..779b98d073d 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -796,8 +796,6 @@ fn run_required_analyses(tcx: TyCtxt<'_>) {
     // Freeze definitions as we don't add new ones at this point.
     // We need to wait until now since we synthesize a by-move body
     // This improves performance by allowing lock-free access to them.
-    // FIXME(async_closures): We could force `coroutine_by_move_body_def_id`
-    // immediately after typeck, then freeze after that.
     tcx.untracked().definitions.freeze();
 
     sess.time("MIR_borrow_checking", || {