| 1234567891011121314151617181920 |
- using ARMeilleure.IntermediateRepresentation;
- namespace ARMeilleure.CodeGen.Unwinding
- {
- struct UnwindPushEntry
- {
- public int Index { get; }
- public RegisterType Type { get; }
- public int StreamEndOffset { get; }
- public UnwindPushEntry(int index, RegisterType type, int streamEndOffset)
- {
- Index = index;
- Type = type;
- StreamEndOffset = streamEndOffset;
- }
- }
- }
|