removed borrow.rs

This commit is contained in:
J.Teeuwissen 2023-07-30 14:03:38 +02:00
parent cb22c3e618
commit 80faf0eeee
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
12 changed files with 140 additions and 1194 deletions

View file

@ -1169,12 +1169,7 @@ impl<
) {
let mut param_storage = bumpalo::vec![in self.env.arena];
param_storage.reserve(params.len());
for Param {
symbol,
ownership: _,
layout,
} in params
{
for Param { symbol, layout } in params {
// Claim a location for every join point parameter to be loaded at.
// Put everything on the stack for simplicity.
self.joinpoint_argument_stack_storage(layout_interner, *symbol, *layout);