diff options
author | theraven <theraven@FreeBSD.org> | 2013-08-07 11:30:04 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2013-08-07 11:30:04 +0000 |
commit | cd23449aedfb7a645f8daf6fbd8abd948580609a (patch) | |
tree | 08cab572b9865df9485d5a8035967ae5dc71ee0f /contrib | |
parent | 7f7658c9c849266701ae1f8c867a85c62502430c (diff) | |
download | FreeBSD-src-cd23449aedfb7a645f8daf6fbd8abd948580609a.zip FreeBSD-src-cd23449aedfb7a645f8daf6fbd8abd948580609a.tar.gz |
Remove __attribute__((__aligned__)) that generates incorrect alignment on compilers that know about SSE. Code left over from old header that thought that 64 bits was the maximum alignment that anything would ever need...
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libcxxrt/unwind-itanium.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libcxxrt/unwind-itanium.h b/contrib/libcxxrt/unwind-itanium.h index 16b3eed..a5c0e755 100644 --- a/contrib/libcxxrt/unwind-itanium.h +++ b/contrib/libcxxrt/unwind-itanium.h @@ -80,7 +80,7 @@ struct _Unwind_Exception _Unwind_Exception_Cleanup_Fn exception_cleanup; unsigned long private_1; unsigned long private_2; - } __attribute__((__aligned__)); + }; extern _Unwind_Reason_Code _Unwind_RaiseException (struct _Unwind_Exception *); extern _Unwind_Reason_Code _Unwind_ForcedUnwind (struct _Unwind_Exception *, |