about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/arena.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-03-11 18:15:53 +0000
committerbors <bors@rust-lang.org>2023-03-11 18:15:53 +0000
commit8a73f50d875840b8077b8ec080fa41881d7ce40d (patch)
treeff0b511068a12ecebbb77b0bbe3aca66c80a6b9c /compiler/rustc_middle/src/arena.rs
parent67e1681c1db9545ec05c458cad440a9197617a30 (diff)
parentdf50001c7de485b31cc4ea3c5100ac090e470c7c (diff)
downloadrust-8a73f50d875840b8077b8ec080fa41881d7ce40d.tar.gz
rust-8a73f50d875840b8077b8ec080fa41881d7ce40d.zip
Auto merge of #109019 - matthiaskrgr:rollup-ihjntil, r=matthiaskrgr
Rollup of 9 pull requests

Successful merges:

 - #104363 (Make `unused_allocation` lint against `Box::new` too)
 - #106633 (Stabilize `nonzero_min_max`)
 - #106844 (allow negative numeric literals in `concat!`)
 - #108071 (Implement goal caching with the new solver)
 - #108542 (Force parentheses around `match` expression in binary expression)
 - #108690 (Place size limits on query keys and values)
 - #108708 (Prevent overflow through Arc::downgrade)
 - #108739 (Prevent the `start_bx` basic block in codegen from having two `Builder`s at the same time)
 - #108806 (Querify register_tools and post-expansion early lints)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_middle/src/arena.rs')
-rw-r--r--compiler/rustc_middle/src/arena.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_middle/src/arena.rs b/compiler/rustc_middle/src/arena.rs
index 55ea78c0474..72907fba5e6 100644
--- a/compiler/rustc_middle/src/arena.rs
+++ b/compiler/rustc_middle/src/arena.rs
@@ -108,6 +108,7 @@ macro_rules! arena_types {
             // (during lowering) and the `librustc_middle` arena (for decoding MIR)
             [decode] asm_template: rustc_ast::InlineAsmTemplatePiece,
             [decode] used_trait_imports: rustc_data_structures::unord::UnordSet<rustc_hir::def_id::LocalDefId>,
+            [decode] registered_tools: rustc_middle::ty::RegisteredTools,
             [decode] is_late_bound_map: rustc_data_structures::fx::FxIndexSet<rustc_hir::ItemLocalId>,
             [decode] impl_source: rustc_middle::traits::ImplSource<'tcx, ()>,