1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 22:13:35 +01:00
Ryujinx/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
LDj3SNuD 3b70a28087
Unwinding Follow-up. Fix a bug in JitUnwindWindows where ... (#1238)
... in case of "Vector" unwind codes the remaining unwind codes could be corrupted.
Nits.
2020-05-15 13:46:35 +02:00

14 lines
340 B
C#

namespace ARMeilleure.CodeGen.Unwinding
{
struct UnwindInfo
{
public UnwindPushEntry[] PushEntries { get; }
public int PrologSize { get; }
public UnwindInfo(UnwindPushEntry[] pushEntries, int prologSize)
{
PushEntries = pushEntries;
PrologSize = prologSize;
}
}
}