remove some frame parameters that are no longer needed

This commit is contained in:
Ralf Jung
2024-03-09 18:23:26 +01:00
parent b888e895de
commit 4497990dff
6 changed files with 18 additions and 18 deletions

View File

@@ -631,7 +631,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
body.args_iter()
.map(|local| (
local,
self.layout_of_local(self.frame(), local, None).unwrap().ty
self.layout_of_local(self.frame(), local, None).unwrap().ty,
))
.collect::<Vec<_>>()
);