svn commit: r254057 - head/contrib/libcxxrt

David Chisnall theraven at FreeBSD.org
Wed Aug 7 11:30:05 UTC 2013


Author: theraven
Date: Wed Aug  7 11:30:04 2013
New Revision: 254057
URL: http://svnweb.freebsd.org/changeset/base/254057

Log:
  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...

Modified:
  head/contrib/libcxxrt/unwind-itanium.h

Modified: head/contrib/libcxxrt/unwind-itanium.h
==============================================================================
--- head/contrib/libcxxrt/unwind-itanium.h	Wed Aug  7 11:07:56 2013	(r254056)
+++ head/contrib/libcxxrt/unwind-itanium.h	Wed Aug  7 11:30:04 2013	(r254057)
@@ -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 *,


More information about the svn-src-all mailing list