diff options
author | 2018-09-11 17:41:23 +0000 | |
---|---|---|
committer | 2018-09-11 17:41:23 +0000 | |
commit | db4e89edfc7ef1d2b80b1c09093dd987640ce7d0 (patch) | |
tree | 880ff56e73f3b26e842444df7f3ab5fafd1783bf /lib/libunwind/src/CompactUnwinder.hpp | |
parent | The cursor position is limited to the margins for CUF and CUB, so turn (diff) | |
download | wireguard-openbsd-db4e89edfc7ef1d2b80b1c09093dd987640ce7d0.tar.xz wireguard-openbsd-db4e89edfc7ef1d2b80b1c09093dd987640ce7d0.zip |
import of libunwind 6.0.0
Diffstat (limited to 'lib/libunwind/src/CompactUnwinder.hpp')
-rw-r--r-- | lib/libunwind/src/CompactUnwinder.hpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/libunwind/src/CompactUnwinder.hpp b/lib/libunwind/src/CompactUnwinder.hpp index f528fba984d..7b97bf84ceb 100644 --- a/lib/libunwind/src/CompactUnwinder.hpp +++ b/lib/libunwind/src/CompactUnwinder.hpp @@ -19,7 +19,6 @@ #include <libunwind.h> #include <mach-o/compact_unwind_encoding.h> -#include "AddressSpace.hpp" #include "Registers.hpp" #define EXTRACT_BITS(value, mask) \ @@ -105,7 +104,7 @@ int CompactUnwinder_x86<A>::stepWithCompactEncodingEBPFrame( default: (void)functionStart; _LIBUNWIND_DEBUG_LOG("bad register for EBP frame, encoding=%08X for " - "function starting at 0x%X\n", + "function starting at 0x%X", compactEncoding, functionStart); _LIBUNWIND_ABORT("invalid compact unwind encoding"); } @@ -224,7 +223,7 @@ int CompactUnwinder_x86<A>::stepWithCompactEncodingFrameless( break; default: _LIBUNWIND_DEBUG_LOG("bad register for frameless, encoding=%08X for " - "function starting at 0x%X\n", + "function starting at 0x%X", encoding, functionStart); _LIBUNWIND_ABORT("invalid compact unwind encoding"); } @@ -336,7 +335,7 @@ int CompactUnwinder_x86_64<A>::stepWithCompactEncodingRBPFrame( default: (void)functionStart; _LIBUNWIND_DEBUG_LOG("bad register for RBP frame, encoding=%08X for " - "function starting at 0x%llX\n", + "function starting at 0x%llX", compactEncoding, functionStart); _LIBUNWIND_ABORT("invalid compact unwind encoding"); } @@ -455,7 +454,7 @@ int CompactUnwinder_x86_64<A>::stepWithCompactEncodingFrameless( break; default: _LIBUNWIND_DEBUG_LOG("bad register for frameless, encoding=%08X for " - "function starting at 0x%llX\n", + "function starting at 0x%llX", encoding, functionStart); _LIBUNWIND_ABORT("invalid compact unwind encoding"); } |