diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2021-10-07 11:29:01 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo.de> | 2021-10-07 20:03:00 +0200 |
| commit | b7cc99142ad0cfe47e2fe9f7a82eaf5b672c0573 (patch) | |
| tree | 9a855bc4022a32a3498651a8fbc138dd595b40ea /compiler/rustc_const_eval/src/interpret | |
| parent | a1e2c0f0ad9e787b5ff2844112fc2324511adf34 (diff) | |
| download | rust-b7cc99142ad0cfe47e2fe9f7a82eaf5b672c0573.tar.gz rust-b7cc99142ad0cfe47e2fe9f7a82eaf5b672c0573.zip | |
Turn tcx.vtable_allocation() into a query.
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/traits.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/traits.rs b/compiler/rustc_const_eval/src/interpret/traits.rs index a6ba00ec695..131674decc9 100644 --- a/compiler/rustc_const_eval/src/interpret/traits.rs +++ b/compiler/rustc_const_eval/src/interpret/traits.rs @@ -30,7 +30,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { ensure_monomorphic_enough(*self.tcx, ty)?; ensure_monomorphic_enough(*self.tcx, poly_trait_ref)?; - let vtable_allocation = self.tcx.vtable_allocation(ty, poly_trait_ref); + let vtable_allocation = self.tcx.vtable_allocation((ty, poly_trait_ref)); let vtable_ptr = self.memory.global_base_pointer(Pointer::from(vtable_allocation))?; |
