CompiledFunction.cs 351 B

1234567891011121314151617
  1. using ARMeilleure.CodeGen.Unwinding;
  2. namespace ARMeilleure.CodeGen
  3. {
  4. struct CompiledFunction
  5. {
  6. public byte[] Code { get; }
  7. public UnwindInfo UnwindInfo { get; }
  8. public CompiledFunction(byte[] code, UnwindInfo unwindInfo)
  9. {
  10. Code = code;
  11. UnwindInfo = unwindInfo;
  12. }
  13. }
  14. }