Skip to content

Commit 8b3a93f

Browse files
vzarytovskii0101
andcommitted
Update src/Compiler/CodeGen/IlxGen.fs
Co-authored-by: Petr Pokorny <[email protected]>
1 parent 7cf2180 commit 8b3a93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compiler/CodeGen/IlxGen.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2659,7 +2659,7 @@ type CodeGenBuffer(m: range, mgbuf: AssemblyBuilder, methodName, alreadyUsedArgs
26592659
member cgbuf.ReallocLocal(cond, ranges, ty, isFixed, canBeReallocd) =
26602660
match ResizeArray.tryFindIndexi cond locals with
26612661
| Some j ->
2662-
let prevRanges, _, isFixed, canBeReallocd = locals[j]
2662+
let prevRanges, _, isFixed, _ = locals[j]
26632663
locals[j] <- ((ranges @ prevRanges), ty, isFixed, canBeReallocd)
26642664
j, true
26652665
| None -> cgbuf.AllocLocal(ranges, ty, isFixed, canBeReallocd), false

0 commit comments

Comments
 (0)