Page MenuHomeFreeBSD

Remove checks for __CC_SUPPORTS__INLINE assuming it is always true.
ClosedPublic

Authored by jhb on Apr 6 2022, 2:26 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 7, 7:23 PM
Unknown Object (File)
Thu, Mar 7, 7:23 PM
Unknown Object (File)
Thu, Mar 7, 7:23 PM
Unknown Object (File)
Thu, Mar 7, 7:11 PM
Unknown Object (File)
Jan 17 2024, 7:58 AM
Unknown Object (File)
Dec 20 2023, 8:41 AM
Unknown Object (File)
Dec 18 2023, 5:46 PM
Unknown Object (File)
Dec 11 2023, 2:13 AM
Subscribers

Details

Summary

All supported compilers (modern versions of GCC and clang) support
this.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 45027
Build 41915: arc lint + arc unit

Event Timeline

IIRC, this would prevent tcc from compiling the kernel.
However, there are a lot of other things preventing that today, so the change is fine.
There may be some userland programs left over from the days of yore for i386 that might also be affected by alternate compilers, but it's more something to be aware of than something we can do anything about.
We assume __inline is a thing almost everywhere, so it isn't really buying us much.

This revision is now accepted and ready to land.Apr 6 2022, 2:38 PM

We compile as for C99 so inline is supported and all modern compilers support __inline.