mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
libunwind: Properly align _Unwind_Exception.
_Unwind_Exception is required to be double word aligned. GCC has interpreted this to mean "use the maximum useful alignment for the target" so follow that lead. Obtained from: LLVM review D22543
This commit is contained in:
parent
afa5d70339
commit
49b33d144b
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ struct _Unwind_Exception {
|
|||
// added for binary compatibility.
|
||||
uint32_t reserved[3];
|
||||
#endif
|
||||
};
|
||||
} __attribute__((__aligned__));
|
||||
|
||||
typedef _Unwind_Reason_Code (*_Unwind_Stop_Fn)
|
||||
(int version,
|
||||
|
|
|
|||
Loading…
Reference in a new issue