diff --git a/compiler/forget/src/HIR/visitors.ts b/compiler/forget/src/HIR/visitors.ts index 359895c981..02bb3fd52a 100644 --- a/compiler/forget/src/HIR/visitors.ts +++ b/compiler/forget/src/HIR/visitors.ts @@ -293,12 +293,10 @@ export function mapInstructionOperands( break; } case "StoreLocal": { - instrValue.lvalue.place = fn(instrValue.lvalue.place); instrValue.value = fn(instrValue.value); break; } case "Destructure": { - mapPatternOperands(instrValue.lvalue.pattern, fn); instrValue.value = fn(instrValue.value); break; }