Page MenuHomeFreeBSD

Define max_align_t for C11.
ClosedPublic

Authored by jhb on Oct 8 2016, 6:26 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Dec 21, 8:54 AM
Unknown Object (File)
Fri, Dec 6, 8:32 PM
Unknown Object (File)
Fri, Nov 29, 8:35 PM
Unknown Object (File)
Fri, Nov 29, 2:46 PM
Unknown Object (File)
Nov 22 2024, 2:37 AM
Unknown Object (File)
Nov 17 2024, 8:29 PM
Unknown Object (File)
Nov 5 2024, 5:40 PM
Unknown Object (File)
Oct 5 2024, 11:15 PM
Subscribers

Details

Summary

Define max_align_t for C11.

libc++'s stddef.h includes an existing definition of max_align_t for
C++11, but it is only defined for C++, not for C. In addition, GCC and
clang both define an alternate version of max_align_t that uses a
union of multiple types rather than a plain long double as in libc++.
This adds a __max_align_t to <sys/_types.h> that matches the GCC and
clang definition that is mapped to max_align_t in <stddef.h>.

PR: 210890

Test Plan
  • universe and an exp-run. One port failed during the exp-run which I still haven't fixed.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb retitled this revision from to Define max_align_t for C11..
jhb updated this object.
jhb edited the test plan for this revision. (Show Details)
jhb added a reviewer: dim.
  • Fix name of GCC macro used to note that max_align_t is defined.
dim edited edge metadata.

LGTM.

This revision is now accepted and ready to land.Oct 20 2016, 6:50 PM
This revision was automatically updated to reflect the committed changes.