Skip to content

Commit

Permalink
Update description of UWOP_EPILOG and UWOP_SPARE_CODE
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-auer committed Mar 30, 2019
1 parent 2920152 commit 444a0c0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pe/exception.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ const UWOP_SET_FPREG: u8 = 3;
const UWOP_SAVE_NONVOL: u8 = 4;
/// info == register number, offset in next 2 slots
const UWOP_SAVE_NONVOL_FAR: u8 = 5;
/// info == XMM reg number, offset in next slot
/// changes the structure of unwind codes to `struct Epilogue`.
/// (was UWOP_SAVE_XMM in version 1, but deprecated and removed)
const UWOP_EPILOG: u8 = 6;
/// info == XMM reg number, offset in next 2 slots
/// reserved
/// (was UWOP_SAVE_XMM_FAR in version 1, but deprecated and removed)
const UWOP_SPARE_CODE: u8 = 7;
/// info == XMM reg number, offset in next slot
const UWOP_SAVE_XMM128: u8 = 8;
Expand Down

0 comments on commit 444a0c0

Please sign in to comment.