From 444a0c0ad02248931b93b638fdfe7b093f27f981 Mon Sep 17 00:00:00 2001 From: Jan Michael Auer Date: Sat, 30 Mar 2019 09:39:15 +0100 Subject: [PATCH] Update description of UWOP_EPILOG and UWOP_SPARE_CODE --- src/pe/exception.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pe/exception.rs b/src/pe/exception.rs index a2260de0a..67be72a54 100644 --- a/src/pe/exception.rs +++ b/src/pe/exception.rs @@ -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;