diff options
author | Ed Maste <emaste@FreeBSD.org> | 2016-07-05 18:00:23 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2016-07-05 18:00:23 +0000 |
commit | e2fc5d984d0bcb0eba77ce5030f053dfc0eae2a2 (patch) | |
tree | b21dcab8cdbe07ded020ad2c036bd62d4b8d88ce /include/libunwind.h | |
parent | ca83053650e2c15214b17a869aae5d544c9a59da (diff) | |
download | src-vendor/llvm-libunwind/libunwind-r272680.tar.gz src-vendor/llvm-libunwind/libunwind-r272680.zip |
Import LLVM libunwind snapshot revision 272680vendor/llvm-libunwind/libunwind-r272680
Significant upstream revisions:
260595: [AArch64] Fix libunwind build when using GNU assembler
270692: Introduce a native-only unwinder build.
270972: Disable cross-unwinding by default.
271004: [libunwind] Improve unwinder stack usage - II
272680: [libunwind] Improve unwinder stack usage - III
Obtained from: https://llvm.org/svn/llvm-project/libunwind/trunk/
Diffstat (limited to 'include/libunwind.h')
-rw-r--r-- | include/libunwind.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libunwind.h b/include/libunwind.h index 6045becc01aa..c5b9633b1506 100644 --- a/include/libunwind.h +++ b/include/libunwind.h @@ -46,12 +46,12 @@ enum { }; struct unw_context_t { - uint64_t data[128]; + uint64_t data[_LIBUNWIND_CONTEXT_SIZE]; }; typedef struct unw_context_t unw_context_t; struct unw_cursor_t { - uint64_t data[140]; + uint64_t data[_LIBUNWIND_CURSOR_SIZE]; }; typedef struct unw_cursor_t unw_cursor_t; |