Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/IKVM.ByteCode/Decoding/StackMapFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public readonly void CopyTo<TConstantView, TConstantPool>(TConstantView constant
where TConstantView : IConstantView
where TConstantPool : IConstantPool
{
if (FrameType is <= 65)
if (FrameType is <= 63)
((SameStackMapFrame)this).CopyTo(constantView, constantPool, ref encoder);
else if (FrameType is >= 64 and <= 127)
((SameLocalsOneStackMapFrame)this).CopyTo(constantView, constantPool, ref encoder);
Expand Down
Loading